:root{
    --background : #1d1d1d;
    --h2-color : #FFF;
    --info-h2 : #5A5A5A
}

/* ========== letsworktogether ========== */
.section#letsworktogether {
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background-color: var(--background);
    transform: translate(0%,0%);
    
}

.section#letsworktogether .content{
    color: #FFF;
    gap:10px;
    margin: 0;
}

.section#letsworktogether .contacts{
    display: flex;
    flex-direction: column;
    gap:50px;
}

@media (orientation: landscape) {
    .section#letsworktogether .letsworktogether-info{
        display: flex;
        flex-direction: row;
        align-items: end;
    }
    .section#letsworktogether .content h2{
        font-size: 5vw;
    }

}

@media (orientation: portrait) {
    .section#letsworktogether .letsworktogether-info{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 50px;
    }
    .section#letsworktogether .content h2{
        font-size: 10vw;
    }
}


.section#letsworktogether .letsworktogether-info .info-list{
    display: flex;
    flex-direction: column;
    gap:5px;    
}

.section#letsworktogether .letsworktogether-info .contact-me{
    border: 1px solid #5A5A5A;
    border-radius: 60px;
    font-size: 20px;
}

.section#letsworktogether .letsworktogether-info .contact-me.fill-button::before{
    background-color: #5a5a5a
}

.section#letsworktogether .letsworktogether-info .contact-me span{
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
}

.section#letsworktogether .content h2{
    color: var(--h2-color);
    margin-bottom: 10vh;
}

.section#letsworktogether .content .info h2{
    color: var(--info-h2);
    font-size: 15px;
    margin-bottom:10px;
}

.section#letsworktogether .letsworktogether-info{
    width: 100%;
    justify-content: space-between;
}

.social {
    display: flex;
    flex-direction: row;
    gap: 10px;
    color: white;
    text-decoration: none;
}

.social img {
    height: 20px;
    width: 20px;
    display: block;
}


footer{
    background-color: var(--background);
    text-align: center;
}