:root{
    --glass-color: #0A1520aa;
    --headline-color: #3E648D;
    --footer-color: #D46B6C;
    --image: url(images/01.jpg);
    --image-blur: url(images/01blur.jpg);
}

*{
    font-family: 'Inter', 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{
    font-size: 16pt;
    display: flex;
    background-image: var(--image-blur);
    background-position: center;
    background-size: cover;
}

.wrapper{
    display: flex;
    width: 100%;
    flex-direction: row;
    height: 100%;
    justify-content: center;
}

.container{
    display: flex;
    width: 100%;
    max-width: 1024px;
    min-height: 480px;
    flex-direction: row;
    justify-content: space-between;
    margin: 2rem;
    background-color: var(--glass-color);
    transition: background-color 200ms ease-in;
    box-shadow: 0 0 3rem 0 rgba(0, 0,0,.3);
}



.container-img{
    flex-basis: 40%;
    background-image: var(--image);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.container-data{
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data{
    padding: 4rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.data .desc{
    font-size: 1rem;
    font-weight: 200;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.data .desc .btn{
    border: 2px solid rgba(255, 255,255,.2);
    border-radius: 2rem;
    padding: .75rem 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: border 200ms ease-in;
}

.data .desc .btn:hover{
    border: 2px solid white
}

.data .desc p{
    line-height: 1.5;
    color: rgba(255, 255,255,.6);
}

.foot{
    background-color: var(--footer-color);
    transition: background-color 200ms ease-in;
    padding: 2rem 4rem;
    display: flex;
    flex-direction: row;
}

.foot.hidden{
    display: none;
}

h1{
    color: var(--headline-color);
    transition: color 200ms ease-in;
    font-size: 2.75rem;
    line-height: 2.75rem;
    font-weight: 200;
    margin-bottom: 1rem;
    font-family: 'Trispace';
    letter-spacing: -2px;

}
h2{
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-weight: 200;
}

a.social{
    font-size: 1rem;
    border: 2px solid rgba(0, 0,0,.2);
    border-radius: 2rem;
    padding: .4rem 1rem;
    display: flex;
    align-items: center;
    margin-right: .5rem;
    cursor: pointer;
    transition: border 200ms ease-in;
    text-decoration: none;
    color: black;
}

a.social:hover{
    border: 2px solid rgba(11, 21,32,1);
}

a.social img{
    height: 24px;
    margin-right: .5rem;
    margin-left: -.5rem;
}

.noselection{
    -webkit-user-select: none;  
    -moz-user-select: none;    
    -ms-user-select: none;      
    user-select: none;
}

@media(max-width: 800px){
    .container{
        display: block;
    }

    .data h1{
        font-size: 2.25rem;
    }

    .data h2{
        margin-bottom: 2.5rem;
    }

    .foot.hidden{
        display: flex;
    }

    .container-data > .foot{
        display: none;
    } 

    .container-img{
        height: 320px;
    }

    html, body{
        height: auto;
    }
}

@media(max-width: 420px){
    .container{
        margin: 0;
    }
}