* {
    box-sizing: border-box;
    font-family: monospace
}

body {
    background-color: #1a1a1a;
    color: #f0f0f0;
}

header {
    background-color: #004d61;
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 30px;
    transition: .3s ease;
}

.logo a {
    text-decoration: none;
    color: #f0f0f0;
}

.logo:hover {
    transform: scale(1.03);
    text-shadow: 3px 3px 0px #201555;
    cursor: pointer;
}

button.general-header-button {
    float: right;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    background: #004d61;
    color: #1a1a1a;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s ease;
}

button.general-header-button:hover {
    transform: scale(1.1);
}

button.youtube:hover {
    color: #f0f0f0;
    text-shadow: 3px 3px 0px #a00707;
}

button.discord:hover {
    color: #8d55d6;
    text-shadow: 3px 3px 0px #5a128a;
}

button.itchio:hover {
    color: #d65e82;
    text-shadow: 3px 3px 0px #7c2153;
}

.dropdown:hover button.projects {
    color: #0ba0a5;
    text-shadow: 3px 3px 0px #185ba7;
    cursor: auto;
    transform: scale(1.1);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    background-color: #f1f1f1;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-30px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
}

.dropdown-content a {
    color: black;
    background-color: #004d61;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
}

.dropdown-content a:hover {
    color: #f1f1f1;
    text-shadow: 1px 1px 0px #000000;
    transform: scale(1.1);
    font-size: 15px
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
