* {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background: black;
}

.background {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../assets/background.png");
    background-repeat: repeat;
    filter: blur(4px);
    z-index: -1;
}

.main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 10vh;
    background: white;
    padding: 20px;
    width: 100vw;
    height: 100vh;
    transition: width 1s, height 1s;
}

.main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: calc(37vh);
    margin-top: calc(7vh);
}

.main a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.main h1 {
    font-size: 5vh;
    font-weight: bold;
    width: 38vh;
    text-align: center;
}

.main a:hover {
    transform: scale(1.3);
}

.main ul {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 7vh;
    list-style: none;
    padding: 0;
    margin: 0;
}


.main li {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    user-select: none;
    pointer-events: none;
}

.main svg {
    height: 100%;
    width: auto;
    user-select: none;
    pointer-events: none;
}

.large-logo {
    transform: scale(0.7);
}

.side-info {
    display: flex;
    flex-direction: column;
    border: .5vh dotted black;
    border-radius: 2vh;
    align-items: center;
    padding: 1vh;
}

.side-info h1 {
    font-size: 4vh;
}

.side-info p {
    font-size: 1.5vh;
}

.side-info img {
    max-height: 25vh;
    max-width: 25vh;
    border-radius: 50%;
    min-width: 0;
}

.side-info p {
}

.hidden {
    opacity: 0;
    transform: translateY(20px);
}

.hidden-side {
    opacity: 0;
    transform: translateX(20px);
}

.fade-in {
    opacity: 1;
    margin: 0;
    transform: translateY(0);
    transform: translateX(0);
    transition: opacity 0.6s ease, transform 0.6s ease, margin 0.6s ease;
}

@media (orientation: portrait) {
    .main {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .side-info {
        display: none;
    }

    .main-container {
        height: 20vh !important;
        border-radius: 4vh;
    }
}