@font-face {
    font-family: arikk;
    src: url(arikk.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: arikk;
}

nav {
    z-index: 99;
    position: fixed;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    display: flex;
}

#navL {
    width: 30%;
    padding: 2vw 5vw;
}

#navL h3 {
    font-family: Segoe Script;

}

#navR {
    width: 70%;
    padding: 2vw 5vw;
    justify-content: flex-end;
    align-items: center;
    display: flex;
}

nav a {
    font-weight: 700;
    margin-right: 3vw;
    font-family: arikk;
    color: black;
    font-size: 1rem;
    text-decoration: none;
}

#main {
    width: 100%;
    height: 100vh;
}

#page1 {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-family: arikk;
    justify-content: center;
    flex-direction: column;
}

#page1 img {
    width: auto;
    height: 7rem;
    object-fit: cover;
    z-index: -1;
    opacity: 0.8;
    margin-bottom: 1rem;
}

button {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 10px 20px;
    color: black;
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    font-family: arikk;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.glass-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}


#page1 h1 {
    color: rgb(77, 77, 77);
}



#page2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: arikk;
    width: 100%;
    height: 100vh;
    background-color: #BEBFC3;
}

@media (max-width: 768px) {
    html {
        font-size: clamp(12px, 2vw, 16px);
    }
}