* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
}

main {
    background: #4D5E76;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 150px 0;
    padding-top: 50px;
}

.wrapper {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}

.logo {
    display: block;
    margin: 0 auto;
    max-width: 780px;
    width: 100%;
    outline: none;
}

.logo img {
    width: 100%;
}

.wrapper p {
    text-align: center;
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin-top: 50px;
}

footer {
    padding: 20px 0;
    background-color: #DFBA6C;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer a,
footer p {
    font-size: 14px;
    text-decoration: none;
    color: #fff;
}

footer .wrp {
    max-width: 1110px;
    margin: 0 auto;
    display: flex;
    padding: 0 10px;
    justify-content: space-between;
    align-items: center;
}

footer a:hover {
    text-decoration: underline;
}

@media screen and (max-width:576px) {
    .wrapper p {
        font-size: 17px;
    }

    footer .wrp {
        flex-direction: column;
        gap: 25px;
    }
}