body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

main {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px 18px;
    position: relative;
    box-shadow: #b4b0b0 3px 0 11px 0;
    margin: 23px;
}

.logo-img {
    display: flex;
    max-width: 450px;
    padding: 10px 6px 0 6px;
    margin-top: 25px;
}

img {
    width: 100%;
}

p {
    font-size: 12px;
    margin-top: 0;
    margin-bottom: 25px;
    color: #5D6163;
}

.band-t {
    width: 100%;
    height: 12px;
    background-color: #981b1f;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.band-b {
    top: auto;
    bottom: 10px;
}

footer {
    margin: 10px auto;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 12px;
}

@media (min-width: 600px) {
    p {
        font-size: 18px;
    }

    p {
        font-size: 18px;
    }

    footer {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {

}

@media (min-width: 1200px) {
    .logo-img {
        padding: 15px;
        margin-top: 0;
    }

    p {
        margin-top: 18px;
    }

    .main-container {
        padding: 55px 65px;
    }

    .band-t {
        height: 18px;
    }

    footer {
        font-size: 15px;
        flex-direction: row;
        max-width: 600px;
    }

}