@font-face {
    font-family: myRoboto;
    src: url(../font/Roboto/RobotoFlex.ttf);
}


html, body{
    height: 100%;
    padding: 0;
    margin: 0;
}

body{
    background-color: #df4244;
}

main{
    width: min(100% - 2rem, 600px);
    margin-inline: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    font-family: 'myRoboto';
    text-align: center;
    gap: 2rem;
}

a{
    text-decoration: none;
}

section#logo-section{
    margin-top: 2rem;
}

img.logo{
    width: min(60%, 220px);
    background-color: white;
    padding: 1rem;
}

section#links-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.button{
    display: block;
    padding: 1em 2em;
    font-size: 14px;
    line-height: 1.42;
    font-weight: 400;
    border: 2px solid #fff;
    text-align: center;
    color: #fff;
    width: min(70%, 250px);
}

section#socials-section{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon{
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.social-icon svg.icon path{
    fill: #0967B1;
}

.icon-text{
    position:absolute;
    left:-10000px;
    top:auto;
    width:1px;
    height:1px;
    overflow:hidden;
}