body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    position: relative;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-image: linear-gradient(to right, #fff 0%, #fff 11%, #333 11%, #333 92%, #fff 92%, #fff 100%);
}

.header-left {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.button-icon {
    height: 3vw;
    margin-right: 0.5vw;
    cursor: pointer;
}

.header-text {
    font-size: 1.2vw;
    color: #fff;
    margin-left: 2.5vw;
    align-self: center;
}

nav {
    display: flex;
}

.language {
    height: 2vw;
    margin-left: 0.5vw;
    cursor: pointer;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 72vh;
    text-align: center;
    padding-bottom: 6rem;
}

.logo-container {
    animation: fadeIn 4s;
}

.logo {
    height: auto;
    width: 40vw;
}

footer {
    display: flex;
    justify-content: space-between;
    background-image: linear-gradient(to right, #333 0%, #333 75%, #fff 75%, #fff 100%);
    padding: 1rem 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.footer-left {
    display: flex;
    align-items: center;
    margin-left: 2rem;
}

.mail-icon {
    height: 3vw;
    cursor: pointer;
}

.footer-right {
    display: flex;
    align-items: center;
    margin-right: 2rem;
}

.footer-text {
    font-size: 1.2vw;
    color: #fff;
    margin-right: 2vw;
    align-self: center;
}

.social-icons {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.social-icons img {
    height: 3vw;
    margin: 0 0.5vw;
    cursor: pointer;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
