.logo-container {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.logo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    display: flex;
    align-items: flex-start;
}

.decoration-container {
    position: relative;
    align-items: flex-start;
    width: 100%;
    height: auto;
}

.decoration {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.navigation {
    position: absolute;
    top: 9%;
    left: 22%;
    width: 34%;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    z-index: 10;
    pointer-events: auto;
    overflow: hidden;
    gap: calc(var(--scale-factor) * 12px);
}

.nav-button {
    width: 100%;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

.nav-button img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.window-content {
    position: relative;
    width: 100%;
    aspect-ratio: 750 / 1241;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.social-media {
    position: absolute;
    right: 6%;
    bottom: 8%;
    width: 50%;
    padding: 2%;
    aspect-ratio: 1 / 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20%;
    justify-content: end;
    align-content: end;
    z-index: 5;
    background: none;
    transform: none;
}

.social-row {
    display: contents;
    width: 100%;
    height: 100%;
}

.social-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    aspect-ratio: 1/1;
}