@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(45deg, #27287c, #351386, #680e83, #9b1389);
    background-size: 400% 400%;
    animation: gradientAnimation 7s ease infinite;
    background-color: #313131;
    margin: 0;
    overflow-x: hidden;

    min-width: 1200px;
    overflow-x: auto;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

h1 {
    color: white;
    font-family: "Funnel Display", sans-serif;
    align-items: center;
    text-align: center;
    font-size: 50px;
}

.header {
    backdrop-filter: blur(8px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #00000065;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
}

.yobimoLogo {
    width: 80px;
    margin-left: 20px;
}

.navigation {
    margin-right: 60px;
    gap: 30px;
    display: flex;
    text-align: right;
    font-family: "Funnel Display", sans-serif;
    font-weight: 600;
}

.navigation a {
    font-family: "Funnel Display", sans-serif;
    font-style: normal;
    text-decoration: none;
    color: #ffffff;
}

.introSection {
    background-color: #313131;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.introContent {
    font-family: "Funnel Display", sans-serif;
    font-size: 2vw;
    color: white;
    z-index: 2;
    opacity: 0%;

    animation-fill-mode: forwards;
    animation-name: welcomeAnimation;
    animation-duration: 1s;
    animation-timing-function: cubic-bezier(0.68, -0.55, 0.27, 1) forwards;
    animation-delay: 0.1s;
}

@keyframes welcomeAnimation {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 100%;
    }
}

.policy-content {
    background-color: #272727;
    color: #fff;
    font-family: "Funnel Display", sans-serif;
    padding: 20px;
    padding-left: 20%;
    padding-right: 20%;

    > h2 {
        font-size: 2vw;
    }

    > h3 {
        font-size: 1.3vw;
    }

    > p {
        font-size: 1.1vw;
    }

    > ol {
        font-size: 1vw;
    }
	
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}
.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

.joinSection {
    background-color: white;

    font-family: "Funnel Display", sans-serif;
    padding: 0.1%;
    text-align: center;

    > h3 {
        color: black;
    }
}

.footer {
    font-family: "Funnel Display", sans-serif;
    width: 100%;
    background: #181818;
    color: #fff;
    padding: 15px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo p {
    margin-left: 30px;
    height: 20px;
}

.footer-links a {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}
