@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Teko:wght@300;400;500;600;700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    background-image: radial-gradient(#202020 2px, transparent 2px);
    background-size: 15px 15px;
    background-color: #121212;
}

header {
    background-color: rgba(25, 27, 29, 0);
    display: flex;
    align-items: center;
    justify-content: right;
    justify-items: center;
    height: 50px;
    text-align: center;
    padding: 20px 35px 10px;
}

header #home-button {
    border: transparent;
    background-color: transparent;
    margin-right: auto;
    height: 50px;
    cursor: pointer;
}

header #home-button img {
    height: 100%;
}

nav ul {
    list-style: none;
}

#account-button {
    border: transparent;
    background-color: rgb(59, 59, 59);
    height: 55px;
    cursor: pointer;
    border-radius: 5px;
    overflow: hidden;
    padding: 5px;
}

#account-button img {
    height: 100%;
}

#account-button.active #account-dropdown {
    visibility: visible;
    opacity: 100%;
}

#account-dropdown {
    width: 150px;
    visibility: hidden;
    background-color: rgb(59, 59, 59);
    position: absolute;
    display: block;
    text-decoration: none;
    right: 35px;
    top: 85px;
    opacity: 0%;
    transition: opacity 0.25s;
    cursor: default;
    overflow: hidden;
    border-radius: 5px;
}

#account-dropdown ul {
    list-style: none;
}

#account-dropdown ul li {
    padding: 10px 30px;
    cursor: pointer;
}

#account-dropdown ul li a {
    color: white;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

#account-dropdown ul li:hover {
    background-color: rgb(95, 95, 95);
    transform: background-color 0.25s;
}

.header {
    color: white;
    text-align: center;
    margin-bottom: 25px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}