#title {
    display: flex;

    width: fit-content;
    height: 100%;

    align-items: center;

    text-decoration: none;
    color: whitesmoke;

    & h1 {
        height: fit-content;

        font-size: 40px;
        font-family: sans-serif;
        font-weight: bold;
        padding-bottom: 3%;
    }
}

header {
    display: flex;
    position: fixed;

    width: 100%;
    height: 72px;
    left: 0;
    top: 0;

    padding: 8px 24px;
    gap: 24px;
    justify-content: space-evenly;
    align-items: center;

    background-color: #111;
    color: whitesmoke;
    user-select: none;
    z-index: 1000;
}

header::before,
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../assets/noise3.png");
    background-repeat: repeat;
    opacity: 0.1;
    pointer-events: none;
}

.nav {
    display: flex;
    height: 100%;
    width: fit-content;
    align-items: center;
    justify-content: space-evenly;

    gap: 16px;

    & a {
        color: whitesmoke;
        text-decoration: none;

        font-size: 28px;

        &:hover {
            color: #c0c0c0;
        }
    }

    & .hidden-twitter {
        display: none;

        font-size: 32px;

        align-items: center;
        justify-content: center;
    }
}

#search {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;

    & input[type="submit"] {
        height: 95%;
        background-color: #f0f0f0;
        color: #111;

        border-radius: 5px;
        border: none;

        padding: 8px;

        &:hover {
            background-color: #c0c0c0;
        }
    }

    & #search-box {
        width: 100%;
        height: 95%;

        padding: 0 10px;
        border-radius: 5px;
        border: none;

        background-color: #f0f0f0;
        color: #111;

        font-size: 24px;

        &:focus {
            outline: none;
            box-shadow: inset 0 0 5px #808080;
        }
    }
}
