@font-face {
    font-family: 'Lato';
    src: url('../fonts/Lato-Regular.woff2') format('woff2'),
        url('../fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{padding:0px; margin: 0px; font-family: 'Lato';}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100vh;
    background-color: #00a19a;
}
a{
    color:#444;
    text-decoration: none;
    transition: all 0.3s ease-in;
    padding:10px;
    background-color: #fff;
    font-size:18px;
    font-family: 'Lato';
}
a:hover{
    background-color:#00a19a;
    color:#fff;
}
img{width: 100%; max-width: 100%;}
.container{
    background-color:#fff;
    padding: 50px 30px;
    width:100%;
    max-width: 300px;
}
.logo{
    width:200px;
    margin:auto;
    margin-bottom:50px;
}
.content{
    max-width: 250px;
    width:100%;
    margin:auto;
}
.social{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.social img{
    width:50px;
    height:50px;
    margin-right:20px;
}

