/*Base style for every page*/

@font-face {
    font-family: Gotham;
    src: url(../Fonts/Gotham-Book.otf);
}

@font-face {
    font-family: Gotham;
    src: url(../Fonts/Gotham-BookItalic.otf);
    font-style: italic;
}

@font-face {
    font-family: Gotham;
    src: url(../Fonts/Gotham-Bold.otf);
    font-weight: bold;
}

@font-face {
    font-family: Gotham;
    src: url(../Fonts/Gotham-BoldItalic.otf);
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: Ubuntu Mono;
    src: url(../Fonts/UbuntuMono.ttf);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #e6e6e6;
}

::-webkit-scrollbar-thumb {
    border: 2.5px solid #00000000;
    background-clip: padding-box;
    border-radius: 10px;
    background-color: #b3b3b3;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #999999;
}

body {
    font-family: Gotham;
    margin: 0;
    padding: 0;
    background-color: #f2f2f2;
    box-sizing: border-box;
}

header {
    height: 70px;
}

.navbar {
    display: flex;
    position: fixed;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    width: 80%;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 0 10% 0 10%;
    z-index: 100;
}

.navbar ul {
    display: flex;
    gap: 20px;
    margin: 0;
}

.navbar ul li {
    list-style-type: none;
    padding: 10px;
}

.navbar a {
    height: 55px;
    color: white;
    font-weight: bold;
}

.navbar a:hover {
    opacity: 0.5;
}

#logo {
    height: 55px;
    width: auto;
    align-items: center;
}

#icon {
    height: 30px;
    width: auto;
    align-items: center;
}

.no-background {
    background: none;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 5px 10px;
}

h1 {
    font-size: 80px;
}

h2 {
    font-size: 70px;
}

h3 {
    font-size: 60px;
}

h4 {
    font-size: 50px;
}

h5 {
    font-size: 40px;
}

h6 {
    font-size: 30px;
}

p {
    font-size: 20px;
}

a {
    text-decoration: none;
    color: black;
    transition: all 0.3s ease-in-out;
}

section {
    background-color: white;
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
    text-align: justify;
}

.sample {
    background-color: white;
    margin: 10px;
    padding: 5px;
    border-radius: 5px;
    width: fit-content;
    margin: 10px auto;
}

span.button {
    color: black;
    display: inline-block;
    background-color: #f2f2f2;
    padding: 5px 10px;
    width: fit-content;
    border-radius: 5px;
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

span.button:hover {
    background-color: #999999;
    color: white;
}

footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    padding: 0 20px;
    height: 70px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    color: white;
    background-color: #333333;
}

footer a:hover {
    opacity: 0.5;
}

footer div {
    height: 30px;
    display: flex;
    align-items: center;
}

footer ul {
    display: flex;
    margin: 0;
    height: 30px;
}

footer ul li {
    list-style-type: none;
    margin: 0;
    padding-right: 10px;
}

footer select,
::picker(select) {
    appearance: base-select;
    border: none;
}

footer select {
    background-color: #f2f2f2;
    color: #333333;
    width: 150px;
    font-size: 20px;
    height: 30px;
    border: none;
    padding: 0 12.5px;
    border-radius: 15px;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

footer select:open {
    color: #333333;
    border-radius: 0 0 15px 15px;
}

footer select::picker-icon {
    color: #333333;
    transition: 0.3s rotate;
    rotate: 180deg;
}

footer select:open::picker-icon {
    rotate: 0deg;
}

footer select option {
    background-color: #f2f2f2;
    color: #333333;
    font-size: 20px;
    padding: 5px 12.5px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease-in-out;
}

footer select option::checkmark {
    order: 1;
    margin-left: auto;
}

footer select option:first-of-type {
    border-radius: 15px 15px 0 0;
}

footer select:hover,
footer select option:hover,
footer select option:focus {
    background: #d9d9d9;
}