*{
    margin: 0;
    padding: 0;
    box-sizing:border-box;
    font-family: 'Saira Extra Condensed',sans-serif;
}

div.description{
    display: flex;

    align-items: flex-start;
    align-content: flex-start;


    justify-items: flex-start;
    justify-content: space-evenly;
    flex-direction: column;

    width: 100vw;
    height: 100vh;
    background: url('./images/background.png') no-repeat center fixed;
    background-size: cover;

    padding: 20px;
}

div.presentation-message{
    display: flex;

    align-items: center;
    align-content: center;

    justify-content: space-between;

    justify-items: center;
    flex-direction: column;
    
    height: 400px;
}
div.message{
    text-align: center;
}


div.description h2{
    color: white;
    font-size: 3.2rem;
}

div.icon-social {
    margin-top: 20px;
}

div.icon-social a{
    text-decoration: none;
    color: white;
    background-color: gray;
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display:inline-block;
    margin: 0 10px;
    text-align: center;

}

div.icon-social i{
    line-height: 80px;
}

div.description p{
    color: #6c757d;
    font-size: 1.6rem;
    margin-top: 40px;
}
