@font-face {
    font-family: 'Pretendard-Regular';
    src: url('https://fastly.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

* {
    font-family: 'Pretendard-Regular';
    box-sizing: border-box;
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #121212;
    color: white;
    overflow-x: hidden;
}

nav {
    background-color: rgba(54, 54, 54, 0.5);
    padding: 10px 30px;
    border-radius: 10px;
    display: flex;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 20px;
    z-index: 10;
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

li {
    margin-right: 20px;
}

li:last-child {
    margin-right: 0;
}

.navv {
    color: white;
    text-decoration: none;
    padding: 10px;
}

section {
    width: 100%;
    min-height: 100vh;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-top: 80px;
    transition: transform 0.5s ease;
}

h1, h2, .title, .text {
    text-align: left;
    margin: 0;
    line-height: 1.5;
    margin-left: 50px;
}

.button {
    margin-top: 30px;
    margin-left: 50px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #e3a1ff;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #efcffc;
}

.title {
    font-size: 3rem;
    font-weight: 800;
    background-image: linear-gradient(to right, #4a90e2, #9013fe);
    -webkit-background-clip: text;
    color: transparent;
}

.text {
    font-size: 1.5rem;
}

.content {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
}
.arrow {
    position: absolute;
    bottom: 20px;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: transform 0.3s;
}
.arrow:hover {
    transform: translateY(5px);
}
.options {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.5s;
}
.option {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}
.option:hover {
    background-color: #45a049;
}

@media screen and (min-width: 1080px) {
    body {
        overflow-y: hidden;
    }

    .highlight {
        font-size: 7rem;
        letter-spacing: -0.04em;
        line-height: 1;
    }
}
    @media screen and (max-width: 1078px) {

        h1, h2, .title, .text {
            margin-left: 20px;
        }

        .title {
            font-size: 5rem;
        }

        .text {
            font-size: 1.2rem;
        }

        nav {
            padding: 5px 15px;
        }

        .navv {
            padding: 5px;
        }

        .highlight {
            font-size: 8rem;
            letter-spacing: -0.07em;
            line-height: 1;
        }
    }

@media screen and (max-width: 758px) {

    h1, h2, .title, .text {
        margin-left: 20px;
    }

    .title {
        font-size: 5rem;
    }

    .text {
        font-size: 1.2rem;
    }

    nav {
        padding: 5px 15px;
    }

    .navv {
        padding: 5px;
    }

    .highlight {
        font-size: 3rem;
        letter-spacing: -0.07em;
        line-height: 1;
    }
}
