@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style-type: none;
}

body {
    height: 100vh;
    background:
    radial-gradient(circle at right, black, transparent), url('images/uni_bg.jpg') no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 9999;
}

header .navbar{
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: space-between;
}

.navbar .logo{
    font-size: 2.1rem;
    font-weight: 600;
}

.navbar .menuItem{
    display: flex;
    gap: 40px;
}

.navbar a {
    color: white;
    text-decoration: none;
    transition: 0.2s ease;
}

.navbar a:hover {
    color: #d9b08c;
    text-decoration: underline;
}

.hero-section {
    padding: 20px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    color: white;
}

.hero-section h2 {
    justify-content: center;
    text-align: center;
}

.hero-section #centerBox {
    color: white;
}

#menu-btn {
    cursor: pointer;
    display: none;
}

#close-btn {
    display: none;
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    color: black;
}

@media screen and (max-width: 1280px) {
    #close-btn, #menu-btn {
        display: block;
    }

    .navbar .menuItem {
        position: fixed;
        left: -260px;
        top: 0;
        flex-direction: column;
        width: 260px;
        height: 100vh;
        background: white;
        padding: 70px 40px 0;
        transition: left 0.15s ease;
    }

    .navbar .logo {
        color: white;
    }

    header.show-mobile-menu .navbar .menuItem {
        left: 0px;
    }

    .navbar a {
       color: black; 
    }
}

input, option, select {
    color: black;
}

* {
        color: white;
        font-family: 'Poppins', sans-serif;
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        z-index: 9999;
    }
    button {
        color: black;
        outline: none;
        border: none;
        font-weight: 500;
        margin: 2px auto;
        padding: 6px 15px;
        border-radius: 3px;
        cursor: pointer;
        transition: 0.2s ease;
    }
    button:hover {
        background: #d9b08c;
    }