@import url('https://fonts.googleapis.com/css2?family=Secular+One&display=swap');
@font-face {
    font-family: 'SPHERE FEZ';
    src: url('SphereFez.ttf') format('truetype');
}
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    opacity: 1;
    transition: opacity 1s ease-out;
    user-select: none;
}

body.fade-out {
    opacity: 0;
}

h1 {
    margin: 1rem 0;
}

h2 {
    color: #FF4655FF;
    opacity: 0;
    font-size: 5vw;
    animation: fadeIn 4s ease forwards;
    font-family: "SPHERE FEZ";
    margin-bottom: 100px;
}

p {
    font-size: 15vh;
    opacity: 0;
    animation: fadeInText 2s ease forwards 3s;
    font-family: "secular one";
    color: rgba(0, 0, 0, 0.59);
}

.intro {
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FF4655FF;
    transform: scale(0, 0);
    animation: animate 1s ease-in forwards 2s;
    overflow: hidden;
}

.content {
    width: 100%;
    text-align: center;
    overflow-y: hidden;
    overflow-x: hidden;
}

@keyframes animate {
    0% {
        transform: scale(0, 0.005);
    }
    50% {
        transform: scaleY(0.005);
    }
    100% {
        transform: scale(1, 1);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50%);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(50%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
