@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rock+Salt&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Roboto', sans-serif; */
    font-family: 'Rock Salt', cursive;
}

section{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #0e1623;
    overflow: hidden;
}

section .text{
    position: relative;
    /* font-size: 5em; */
    font-size: clamp(2rem, 8vw, 5rem);
    text-align: center;
    color: #00fe77;
    -webkit-box-reflect: below -0.46em linear-gradient(transparent, #004);
}

section .text span {
    position: relative;
    display: inline-block;
}

.menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 20px;
    z-index: 1000;
}

.menu a {
    color: #00fe77;
    text-decoration: none;
    font-family: 'Rock Salt', cursive;
    font-size: 1rem;
    transition: 0.3s;
}

.menu a:hover {
    opacity: 0.6;
}

html {
    scroll-behavior: smooth;
}

.projects {
    min-height: 100vh;
    background: #0b0f18;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    section .text {
        font-size: clamp(1.5rem, 10vw, 3.5rem);
        padding: 0 10px;
    }
}