@font-face {
    font-family: 'Dual';
    src: url('./fonts/Dual-300.eot');
    src: local('./fonts/Dual 300'), local('./fonts/Dual-300'),
        url('./fonts/Dual-300.eot?#iefix') format('embedded-opentype'),
        url('./fonts/Dual-300.woff2') format('woff2'),
        url('./fonts/Dual-300.woff') format('woff'),
        url('./fonts/Dual-300.ttf') format('truetype'),
        url('./fonts/Dual-300.svg#Dual-300') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

*{
    margin: 0;
    box-sizing: border-box;
    
}
body{
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
    color:rgba(255, 252, 223,0.7);
}
.wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    text-align: center;
}
h1{
    font-size: 48px;
    line-height: 55px;
    font-weight: 600;
    margin-bottom: 0px;
}


a{
    text-decoration: none;
    color:rgba(255, 252, 223,0.7);
    font-size: 48px;
    display: block;
    line-height: 55px;
}
@media(min-width: 768px){
    h1{
        font-size: 60px;
        margin-bottom: 0px;
    }
    a{
        font-size: 60px;
        line-height: 70px;
    }
}
.social{
    display: flex;
    justify-content: center;
    align-items: center;
}
.social a{
    margin: 0 10px;
    
}
.social svg{
        fill:rgba(255, 252, 223,0.7);
        display: block;
        transform:translateY(4px);
        width: 40px;
        height: 40px;
}
@media(min-width: 768px){
    .social svg{
        width: 50px;
        height: 50px;
        transform:translateY(7px);
    }
}