* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

*::-webkit-scrollbar {
    display: none;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: var(--text-color);

}

p {
    font-family: "DotGothic16", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.item1 {
    font-size: 10vw;
    text-align: center;
    animation-name: fadeInAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.main-text {
    margin: 0 50px;
}

.main-text h1 {
    margin: 0;
}

.main-text p {
    margin: 0;
    font-size: clamp(25px, 3vw, 40px);
}

.item2 {
    text-align: center;
}

.item2 img {
    width: clamp(250px, 20vw, 500px);
    height: auto;
}

.profile-text {
    padding: 25px;
    text-align: left;
}

.link img {
    width: 50px;
    height: 50px;
    margin: 10px;
}

.item4 {
    text-align: center;
}

.item4 img {
    width: clamp(150px, 10vw, 400px);
    height: auto;
}

@media screen and (min-width: 960px) {
    .item1 {
        font-size: clamp(20px, 6vw, 70px);
        text-align: center;
        animation-name: fadeInAnime;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

    .item2 {
        display: flex;
        align-items: center;
    }

    .item2 img {
        width: clamp(250px, 20vw, 500px);
        height: auto;
    }

    .profile-text {
        padding: 50px;
    }

    .profile-text {
        padding: 50px;
        text-align: left;
    }

    .item4 {
        text-align: left;
    }
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

h1 {
    font-family: "Tiny5", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.full-page-scroll {
    width: 100%;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.section {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    scroll-snap-align: start;
}

:root {
    --background-color: #fff9ee;
    --text-color: #272625;
}