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

body {
    background: #0f1117;
    color: white;
    font-family: 'Inter', sans-serif;
    height: 100vh;
}


.navbar {
    width: 100%;
    padding-top: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.menu {
    display: flex;
    gap: 50px;
    margin-bottom: 14px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.7;
}

.separator {
    width: 80%;
    max-width: 1400px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

.main-content {
    height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.box {
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.02);
}
