@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Amiri:wght@400;700&family=Open+Sans:wght@400;700&display=swap');

@font-face {
    font-family: 'Chloe';
    src: url("fonts/Chloe-Regular.otf");
}

@font-face {
    font-family: 'Operetta';
    src: url('fonts/Operetta52-Bold.otf');
}


@font-face {
    font-family: 'Hopipolla';
    src: url('fonts/Hopipolla.ttf');
}

@media (min-aspect-ratio: 1/1) {
    html {
        background-image: url("../assets/images/bg.png") !important;
        background-color: transparent !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    body {
        background: transparent !important;
        backdrop-filter: blur(8px);
    }

    header {
        display: none !important;
    }

    main {
        display: flex !important;
        flex-direction: row !important;
        gap: 20vw;
        scale: 0.5;
    }

    .bubble {
        background-color: rgba(0, 0, 0, 0.6) !important;
        padding: 5%;
        border-radius: 30px !important;
        backdrop-filter: blur(8px);
    }

    .buttons-column {
        gap: 5vh !important;
    }

    .link-button {
        width: 45vw !important;
        height: 12vw !important;
    }

    .button-icon {
        height: 7.5vw !important;
    }

    .stars-bg {
        display: none;
    }
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(to bottom,#2f0101ff 0%,#2f0101ff 50%,#000000 100%);
    overflow: hidden;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    padding: 0;
}

main {
    width: 100vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -11vh;
    margin-bottom: 0;
    z-index: 1;
}

a {
    text-decoration: none;
}

a:visited {
    text-decoration: none;
}

.header-bg {
    z-index: 0;
}

.img-bg {
    width: 100vw;
    height: auto;
}

.bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: auto;
    background-color: #2f0101ff;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
}

.logo img {
    width: 25vw;
    height: auto;
    margin-top: -5vh;
    border-radius: 50%;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 1);
}

.title-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.title {
    font-family: 'Operetta';
    font-size: 64px;
    color: whitesmoke;
    margin-top: 1vh;
}

.title img {
    width: 80px;
    height: auto;
    margin-bottom: 10px;
    margin-left: -32px;
}

.subtitle {
    font-family: 'Hopipolla';
    font-size: 64px;
    color: whitesmoke;
    background: linear-gradient(to left, transparent, #500404, transparent);
    margin-top: -2vh;
}

.social-links {
    display: flex;
    gap: 5vw;
}

.social-button {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    transition: scale 1s ease,background-color 0.8s ease;
}

.social-button:hover{
    scale: 1.1;
    background-color: #2f0101ff;
}

.buttons-column {
    display: flex;
    flex-direction: column;
    margin-top: 5vh;
    gap: 2vh;
}

.link-button {
    width: 65vw;
    height: 20vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    border: none;
    border-radius: 96px;
    background-color: #500404;
    font-family: 'Operetta';
    font-size: 48px;
    color: whitesmoke;
    box-shadow: 0px 5px 40px rgba(0, 0, 0, 0.6);
    transition: scale 1s ease, background-color 0.8s ease;
}

.link-button:hover {
    scale: 1.1;
    background-color: #2f0101ff;
}

.button-icon {
    width: auto;
    height: 7.5vh;
}

.button-sparkle {
    width: auto;
    height: 7.5vh;
    margin-top: -7.5vh;
    margin-right: -2vw;
}

.stars-bg {
    width: 100vw;
    height: auto;
    margin-top: auto;
}