body {
    width: 70%;
    margin: auto;
    font-family: Inter, Arial, Helvetica, sans-serif;
}

/*** Header CSS ***/
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;

    background-color: rgb(17, 17, 27);
    border-radius: 50px;
    box-shadow: 0px 0px 20px rgb(17, 17, 27);

    font-size: 20px;
    font-weight: 600;

    margin-left: 2%;
    margin-right: 2%;
}

/* Makes it possible to possition the header on top of the website and clear all text under on top of it */
.header-wrapper {
    background-color: white; 
    padding-top: 15px; 
    z-index: 2; 
    position: fixed;
    top: 0;
    width: 70%;
}

header a.home {
    color: white;
    text-decoration: none;
    margin-left: 10%;
}

header a.home:hover {
    color: rgb(116, 199, 236) !important;
}

/*** Dropdown CSS ***/
/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display: inline-block;
    margin: 0px 5% 0px 0px;
}

/* Dropdown Button */
.dropdownButton {
    display: inline-block;
    cursor: pointer;
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 5px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
    border-radius: 100px;
}
  
.change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
}
  
.change .bar2 {
    opacity: 0;
}
  
.change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
}

/* Dropdown Content (Hidden by Default) */
.dropdownContent {
    display: block; /* Change to block to ensure that the transition works */
    position: absolute;
    background-color: rgb(17, 17, 27);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(17, 17, 27, 0.2);
    right: 0;
    margin-top: 37px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-in-out;

    border-radius: 10px;
}

/* Links inside the dropdown */
.dropdownContent a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdownContent a.active {
    color: rgb(203, 166, 247);
}

.dropdownContent a:hover {
    color: rgb(116, 199, 236) !important;
}

.dropdownContent hr {
    margin: 0px;
}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {
    max-height: 500px; /* Adjust the maximum height based on your content */
}

/*** Footer CSS ***/
footer {
    margin: 10px 0px 10px 0px;
    text-align: center;
    cursor: default;
}

footer button {
    font-size: 40px;
    border: none;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0);
}

footer button.deactivated {
    opacity: 0.5;
    cursor: default;
}