@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

body{
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
}
.background{
    height: calc(100vh - 44.4px);
    background-size: cover;
    display: grid;
    place-items: center;
}
.logo img{
    max-width: 100%;
}
.text{
    margin-top: 3rem;
    color: #565a5d;
    text-align: center;
}
p{
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
a{
    color: #565a5d;
    text-decoration: none;
}
a:hover{
    text-decoration: underline;
}

.footer{
    background-color: #53575A;
    color: #fff;
    text-align: center;
    padding: .9rem 0;
}
.footer p{
    font-size: 0.8125rem;
    font-style: normal;
    font-weight: 300;
    line-height: 120%; /* 0.975rem */
    letter-spacing: 0.025rem;
}
.center{
    position: relative;
}
.overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 20%);
}

@media (min-width: 992px){
    .logo img{
        max-width: 600px;
    }
}