* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    overflow: hidden;
}

body {
    background-color: #d6d3cd;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 15vh;
}


.container {
    text-align: center;
    padding: 20px;
    width: 100%;
}


.logo {
    max-width: 500px;
    width: 90%;
    height: auto;
}


.footer {
    width: 100vw;
    background-color: #ffffff;
    padding: 15px 20px;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: fixed;
    bottom: 0;
    left: 0;
}


.footer-icon {
    width: 28px;
    height: 28px;
}


/* Tablet adjustments */
@media (max-width: 768px) {
    body {
        padding-top: 11vh;
    }
    
    .logo { 
        max-width: 400px;
        width: 85%;
    }
    
    .footer {
        padding: 12px 15px;
    }
    
    .footer-icon {
        width: 24px;
        height: 24px;
    }
}


/* Mobile adjustments */
@media (max-width: 480px) {
    body {
        padding-top: 11vh;
    }
    
    .logo { 
        max-width: 280px;
        width: 80%;
    }
    
    .footer {
        padding: 10px;
    }
    
    .footer-icon {
        width: 20px;
        height: 20px;
    }
}
