@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Helvetica Neue", sans-serif
}


html{
    overflow: auto;
}

header{
    position: fixed;
    top: 0;
    /* z-index: 1000; */
    width: 100%;
    display: flex;
    align-items: center;
    padding: 10px 35px;
    background: transparent;
}
ul {
    display: flex;
    justify-content: center;
    margin: auto;
}

/* body{
    height: 100%;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(245.59deg, #7a7a7a 0%, #747373 28.53%, #2f312f 75.52%);
} */

.background {
    height: 60vw;
    background-size: cover;
}

header img {
    height: 90px; 
}

.navlist{
    display: flex;
}
.navlist a {
    color: white;
    margin-left: 60px;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all .55s ease;
}
.navlist a:hover {
    border-bottom: 2px solid white;
}

#menu-icon {
    color: white;
    font-size: 35px;
    /* z-index: 10001; */
    cursor: pointer;
    display: none;
}

#ruleContainer {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rule-box {
    display: none;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 10px;
    display: none;
}
