@font-face {
    font-family: "Unbounded-ExtraBold";
    src: url("./font/Unbounded-ExtraBold.ttf");
}

@font-face {
    font-family: "Unbounded-Regular";
    src: url("./font/Unbounded-Regular.ttf");
}

@keyframes rotate {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    5% {
        transform: translate(5px, 5px) rotate(5deg);
    }
    10% {
        transform: translate(0, 0) rotate(0eg);
    }
    15% {
        transform: translate(-5px, 5px) rotate(-5deg);
    }
    20% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(0, 0) rotate(0deg);
    }
}

@keyframes full-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.icon {
    position: absolute;
    animation: rotate 4s ease-in-out infinite;
}

.rotate:hover {
    animation: full-rotate 0.5s ease-in-out;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    font-size: 16px;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

h1,
p {
    margin: 0;
}

body {
    margin: 0;
    padding: 0;
    background-color: #210b2e;
    scrollbar-width: none;
    background: url("./images/desktop-bg.png");
    background-attachment: fixed;
    background-size: 100% 100%;
    position: relative;
    width: 100%;
    height: 100%;
}

.content {
    display: flex;
    flex-direction: column;
    position: static;
}

.header {
    display: flex;
    position: absolute;
    top: 0;
    width: 100%;
    padding: 1.875rem 0 1.875rem 4.063rem;
    background: radial-gradient(
            74.52% 220.24% at 50.03% 100%,
            #9d20ff 0%,
            rgba(157, 32, 255, 0) 61.78%
        ),
        #210b2e;
    box-shadow: -36.984px 3.698px 92.46px 0 #000;
    backdrop-filter: blur(40.12693405151367px);
    z-index: -1;
}

.header-logo {
    width: 18.469rem;
}

.rocket-mob {
    display: none;
}

.rocket {
    width: fit-content;
    height: auto;
    z-index: 1;
    overflow: hidden;
    margin-left: 16%;
}

.icon-overlay {
    display: flex;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative;
}

.star {
    bottom: 37%;
    left: 9%;
    width: 8%;
    z-index: 20;
}

.heart {
    width: 18%;
    top: 10%;
    left: 13%;
    z-index: 20;
}

.star-right {
    top: 25%;
    right: 6%;
    width: 8%;
    z-index: 20;
}

.flash {
    bottom: 36%;
    right: 22%;
    width: 7%;
    z-index: 20;
}

.bottom {
    width: max-content;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4%;
    z-index: 2;
}

.bottom-container {
    display: flex;
    flex-direction: column;
    position: relative;
    color: #ffffff;
    text-shadow: 0.219rem 0.438rem 1.688rem #3b055480,
        0 0.209rem 1.25rem #7d14d0cc;
    border-radius: 2.2rem;
    background: radial-gradient(
            348.89% 277.7% at 64.44% 134.3%,
            #ff440036 0%,
            rgba(157, 32, 255, 0) 30%
        ),
        rgba(157, 32, 255, 0.2);
    box-shadow: -23.115px 2.311px 57.787px 0 #00000045,
        0 1.578px 0 0 rgb(255, 71, 255) inset,
        4.062px 5.416px 14.759px 0 rgba(0, 0, 0, 0.25),
        1.354px -8.124px 1.291px -7.267px rgba(157, 32, 255, 0.2) inset,
        4.062px 4.062px 5.145px -5.416px #9d20ff inset,
        -4.062px -4.062px 2.422px -5.416px #9d20ff inset,
        -1px 8px 10.906px 4.062px rgb(255, 71, 255, 10%) inset,
        0 0 48.444px 0 rgba(255, 71, 255, 0.1) inset;
    backdrop-filter: blur(0.2rem);
    padding: 2.594rem 1.3rem;
}

.bottom-container::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(35% 1% at 40% 0%, #ffffff, transparent);
    z-index: 100;
}

.title {
    font-family: "Unbounded-ExtraBold", sans-serif;
    font-size: 10rem;
    line-height: 0.8;
}

.contrast {
    color: #ff4200;
}

.column {
    display: flex;
    flex-direction: row;
    align-items: center;
    line-height: 1.3;
}

.column .title {
    font-size: 9.625rem;
}

.smaller-text {
    font-family: "Unbounded-Regular", sans-serif;
    font-size: 3.3rem;
    letter-spacing: -0.178rem;
}

@media screen and (min-width: 2500px) {
    :root {
        font-size: 24px;
    }

    .star {
        bottom: 37%;
        left: 14%;
        width: 8%;
    }

    .heart {
        width: 16%;
        top: 10%;
        left: 15%;
    }

    .flash {
        bottom: 37%;
        right: 24%;
        width: 6%;
    }
}

@media screen and (min-width: 1920px) and (max-width: 2500px) {
    :root {
        font-size: 20px;
    }

    .rocket {
        margin-left: 14%;
    }
}

@media screen and (max-width: 1200px) {
    :root {
        font-size: 13px;
    }
}

@media screen and (max-width: 1024px) {
    :root {
        font-size: 10.5px;
    }
}

@media screen and (max-width: 850px) {
    :root {
        font-size: 10px;
    }

    html,
    body {
        overflow: visible;
    }

    body {
        background-size: 150% 110%;
        background-position: bottom;
    }

    .header {
        justify-content: center;
        padding: 0.875rem;
    }

    .header-logo {
        margin-inline: auto;
        width: 40rem;
    }

    .rocket {
        display: none;
    }

    .rocket-mob {
        display: flex;
        height: auto;
        width: 100vw;
        margin-left: 0;
        margin-top: 0;
        z-index: -2;
    }

    .heart {
        width: 35%;
        top: 8%;
        left: 5%;
    }

    .star {
        display: none;
    }

    .flash {
        bottom: 26%;
        right: 7%;
        width: 16.5%;
    }

    .star-right {
        display: none;
    }

    .bottom {
        width: max-content;
        position: relative;
        margin-top: -8%;
        margin-inline: auto;
        transform: translateX(0);
        left: 0;
        z-index: 2;
    }

    .bottom-container {
        align-items: center;
    }

    .title {
        font-size: 7.8rem;
        line-height: 0.9;
    }

    .column .title {
        font-size: 11rem;
    }

    .column {
        flex-direction: column;
    }

    .smaller-text {
        text-transform: lowercase;
        font-size: 5rem;
        margin-top: 3rem;
    }
}

@media screen and (max-width: 430px) {
    :root {
        font-size: 5.5px;
    }

    html,
    body {
        overflow: visible;
    }

    .icon-overlay {
        height: max-content;
    }

    .flash {
        bottom: 19%;
        right: 7%;
        width: 19.5%;
    }

    .bottom-container {
        padding: 7.455rem 3.818rem;
        border-radius: 6.364rem;
    }

    .bottom-container::after {
        background: radial-gradient(35% 1% at 18% 0%, #ffffff85, transparent);
        border-radius: 6.364rem 6.364rem 0 0;
    }

    .smaller-text {
        font-size: 5.636rem;
    }
}

@media screen and (max-width: 320px) {
    :root {
        font-size: 4px;
    }
}
