@font-face {
    font-family: 'DosisExtraLight'; 
    src: url('/assets/fonts/static/Dosis-ExtraLight.ttf') format('opentype'); 
    font-weight: normal; 
    font-style: normal;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    background-color: #2b2b2b;
    font-family: 'DosisExtraLight', sans-serif;
    scroll-behavior: smooth;
}

.contactContainer{
    display: flex;
    flex-direction: row;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.contactContainer h2{
    font-size: 35px;
    color: white;
}

.contactDetails{
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contactPhoto{
    width: 50vw;
}

.contactPhoto img{
    height: 100vh;
    width: auto;
}

.contact-info{
    display: flex;
    align-items: start;
    margin: 30px 0;
    flex-direction: column; 
}

.contact-info a{
    text-decoration: none;
}

.contact-info i{
    display: flex;
    
    margin: 20px;
    background-color: #f1c40f;
    border: solid 20px #f1c40f;
    border-radius: 50%;
    font-size: 22px;
    color: white;
}

.contact{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact p{
    color: white;
}

.information{
    display: flex;
    flex-direction: row;
}

.type{
    font-weight: 600;
    font-size: 25px;
    margin-right: 20px;
}

.type-info{
    font-size: 25px;
}

.footer{
    margin-top: 0 !important;
}

@media (max-width: 600px){

    .contactContainer{
        display: flex;
        flex-direction: column;
        height: auto;
        justify-content: center;
        align-items: center;
        margin-top: 100px;
        width: 100%;
    }
    
    .contactContainer h2{
        font-size: 35px;
        color: white;
        text-align: center;
    }
    
    .contactDetails{
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
    }
    
    .contactPhoto{
        width: auto;
    }
    
    .contactPhoto img{
        height: auto;
        width: 100%;
    }
    
    .contact-info{
        display: flex;
        align-items: start;
        margin: 0 0 30px 0;
        flex-direction: column; 
        
    }
    
    .contact-info a{
        text-decoration: none;
    }
    
    .contact-info i{
        display: flex;
        
        margin: 20px 20px 20px 10px;
        background-color: #f1c40f;
        border: solid 20px #f1c40f;
        border-radius: 50%;
        font-size: 22px;
        color: white;
    }
    
    .contact{
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    
    .contact p{
        color: white;
        font-size: 22px;
    }
    
    .information{
        display: flex;
        flex-direction: row;
    }
    
    .type{
        font-weight: 600;
        font-size: 25px;
        margin-right: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .type-info{
        font-size: 25px;
    }

    
}