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

body {
    font-family: "Poppins", sans-serif;
}

a,
button {
    font-family: "Poppins", sans-serif;
    color: white;
}

.important-infos {
    padding: 10px;
    background-color: lightblue;
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-bar {
    height: 10vh;
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: rgb(58, 58, 58);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-bar button:hover,
a:hover {
    cursor: pointer;
}

.active {
    color: rgb(124, 213, 243);
}

a {
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.dropdown:hover .dropbtn {
    color: lightblue;
    transform: translateY(0px);
    transition: all 0.4s;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #424242;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.dropdown-content a {
    float: none;
    border-radius: 5px;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.dropdown-content a:hover {
    background-color: rgb(102, 101, 101);
}

.dropdown:hover .dropdown-content {
    display: block;
    transform: translateY(0px);
    transition: all 0.4s;
}

@media only screen and (max-width: 900px) {
    .nav-bar {
        width: 90%;
    }
    .important-infos {
        width: 90%;
    }
}