.logo-img,
.social-icon {
    transition: transform 0.3s ease-in-out;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: "Open Sans", serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    color: #7a4026;
    height: 100%;
    background-color: #ffe9cc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}
.container {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}
.logo {
    display: inline-block;
    margin-bottom: 20px;
}
.logo-img {
    width: 200px;
    height: auto;
}
.logo-img:hover,
.social-icon:hover {
    transform: scale(1.1);
}
#avatar {
    opacity: 0;
    animation: 2s forwards fadeIn;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-svg {
    width: 24px;
    height: 24px;
    fill: #738fc9;
}
.social-icon a {
    text-decoration: none;
}
.social-icon a[aria-label] {
    position: relative;
}
@media (max-width: 600px) {
    .logo-img {
        width: 150px;
    }
    .social-icon {
        width: 30px;
        height: 30px;
    }
    .social-svg {
        width: 20px;
        height: 20px;
    }
    .container {
        padding: 10px;
    }
}
.footer {
    position: fixed;
    bottom: 30px;
    left: 30px;
    font-family: "Open Sans", sans-serif;
    font-size: 12px;
    color: #794025;
}
