header {
    z-index: 100;
    display: flex;
    justify-content: space-between;
    padding: 10px 40px;
    height: 135px;
    background-color: rgba(34, 34, 34, 0.7);
    box-shadow: 0px 10px 10px rgba(34, 34, 34, 0.7);
    align-items: center;
}

.logo img {
    height: 80px;
}

nav {
    width: 40px;
    height: 30px;
}

#loginButton {
    background-color: rgba(34, 34, 34, 0.7);
    color: white;
    cursor: pointer;
    border-radius: 10px;
    font-size: 20px;
    margin: 5px;
    padding: 10px;
}

.user {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.user img {
    border-radius: 100%;
    height: 125px;
    width: 125px;
}

.user p {
    font-size: 50px;
    padding-left: 10px;
    /* color: white; */
}


.login-window-handler {
    top: 0;
    bottom: 0;
    z-index: 1000;
    position: fixed;
    height: 100vh;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(34, 34, 34, 0.8);
}

.login-window {
    background-color: rgba(34, 34, 34, 1);
    height: 500px;
    width: 300px;
    border-radius: 20px;
}

.closing-button {
    display: flex;
    justify-content: end;
    margin-bottom: 40px;
}

.closing-button button {
    background-color: rgba(34, 34, 34, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 100%;
    border: 0;
    font-size: 20px;
    margin: 10px;
    padding: 20px;
    height: 20px;
    width: 20px;
    transition: background-color 0.5s ease;
}

.closing-button button:hover {
    background-color: rgb(161, 1, 1);
}

.closing-button b {
    color: white;
}

.connection-buttons {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

S .connection-buttons p {
    font-size: 20px;
}

.connection-buttons img {
    height: 40px;
    padding-left: 30px;
    padding-right: 10px;
}

.twitch {
    border-color: black;
    background-color: rgba(34, 34, 34, 1);
    display: flex;
    align-items: center;
    cursor: pointer;
    width: 240px;
    height: 60px;
    border-radius: 10px;
    transition: background-color 0.5s ease;
}

.twitch:hover {
    background-color: rgb(169, 112, 255);
}


.hamburger {
    width: 40px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    background: white;
    border-radius: 2px;
    transition: transform 0.25s ease;
    will-change: transform;
}

.hamburger:hover span:nth-child(1) {
    transform: translateX(-12px);
    transition-delay: 0s;
}

.hamburger:hover span:nth-child(2) {
    transform: translateX(12px);
    transition-delay: 0.05s;
}

.hamburger:hover span:nth-child(3) {
    transform: translateX(-12px);
    transition-delay: 0.1s;
}

.hamburger-menu {
    position: fixed;
    top: 0px;
    width: 300px;
    background-color: #222222;
    box-shadow: 5px 10px 10px #222222,
        5px -10px 10px #222222;
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.hamburger-menu div {
    padding: 25px 40px;
}

.hamburger-menu ul {
    display: flex;
    justify-content: start;
    flex-direction: column;
    margin: 0;
}

.hamburger-menu a {
    font-size: 20px;
    color: white;
    text-decoration: none;
    transition: color 0.5s ease;
}

.hamburger-menu a:hover {
    color: #2BD6F1;
}

.hamburger-menu li {
    padding: 5px 40px;
}

ul {
    padding: 0;
    list-style-type: none;
}