.nav {
    height: 55px;
    width: 100%;
    background-color: #000000;
    position: relative;
    border-radius: 2.5px;
}

.nav>.nav-header {
    display: inline;
}

.nav>.nav-header>.nav-title {
    display: block;
    float: left;
    font-size: 26px;
    color: royalblue;
    margin: .3em;
}

.nav-title>a {
    text-decoration: none;
    color: #ffffff;

}

.nav-title>p {
    font-size: 30px;
}

.nav-title>a:hover {
    background-color: #696969;
}

.nav>.nav-btn {
    display: none;
}

.nav>.nav-links {
    float: right;
    font-size: 18px;
}

.nav>.nav-links>a {
    display: inline-block;
    padding: 13px 35px 13px 10px;
    text-decoration: none;
    color: #ffffff;
}

.nav>.nav-links>a:hover {
    background-color: #696969;
}

.nav>#nav-check {
    display: none;
}

/* Style for the dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Add some styling to the icon (adjust as needed) */
.dropdown .dropbtn i {
    margin-left: 5px;
}

.button-text {
    display: inline-block;
    /* Adjust the margin as needed */
}

/* Style for the dropdown button */
.dropbtn {
    background-color: #000000;
    color: #ffffff;
    padding: 13px 49px;
    font-size: 18px;
    border: none;
    cursor: pointer;
}

/* Style for the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #000000;
    text-align: left;
    z-index: 1;
}

/* Style for the dropdown links */
.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: #696969;
}

/* Show the dropdown content when the dropdown button is hovered over */
.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width:600px) {
    .nav>.nav-btn {
        display: inline-block;
        position: absolute;
        right: 0px;
        top: 0px;
    }

    .nav>.nav-btn>label {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 13px;
    }

    .nav>.nav-btn>label:hover {
        background-color: rgba(0, 0, 0, 0.3);
    }

    .nav>.nav-btn>label>span {
        display: block;
        width: 25px;
        height: 10px;
        border-top: 2px solid #ffffff;
    }

.nav>.nav-links {
    position: absolute;
    display: block;
    width: 100%;
    background-color: #000000;
    height: 0px;
    transition: all .75s ease-in;
    overflow-y: hidden;
    top: .6em;
    left: 0px;
    text-align: left;
    margin-bottom: .4em;
}


.nav>.nav-links>a {
    display: block;
    width: 100%;
    color: white;
    font-size: 20px;
    padding: 14px;
    height: auto;
    overflow: hidden;
}

.nav>#nav-check:not(:checked)+.nav-links {
    height: 0px;
}

.nav>#nav-check:checked+.nav-links {
    height: calc(55vh - 50px);
    overflow-y: auto;
    position: relative;
}

    h1 {
        padding: 0;
        font-size: 22px;
    }

    h2 {
        padding: 0px;
        font-size: 20px;
    }
}
