@charset "UTF-8";
/* CSS Document */

body {
    margin: 0;
    padding: 0;
    background-color: #dbeae1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    position: relative;
}
.logo {
    width: 20vw;
    max-width: 200px;
}
.footer {
    position: absolute;
    bottom: 10px;
    text-align: center;
    font-size: 14px;
    color: #333;
}
.corner {
    position: absolute;
}
.top-left {
    top: 0;
    left: 0;
    width: 40vw;
    max-width: 300px;
}
.top-right {
    top: 0;
    right: 0;
    width: 40vw;
    max-width: 300px;
}
.bottom-right {
    bottom: 0;
    right: 0;
    width: 40vw;
    max-width: 300px;
}
@media (max-width: 768px) {
    .logo {
        width: 40vw;
        max-width: 200px;
    }
    .top-left, .top-right, .bottom-right {
        width: 40vw;
        max-width: 300px;
    }
}
