.header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 60px;
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px 40px;
    justify-content: space-evenly;
    align-items: center;
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 4px solid rgba(210, 210, 210, 0.2);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.title-box {
    display: flex;
    align-items: center;
    margin-right: 300px;
    transition: transform 300ms ease;
}

.header-title {
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: all 300ms ease;
}

.title-box:hover i,
.title-box:hover .header-title {
    color: var(--primary-color);
    text-shadow: 0px 0px 20px var(--primary-color);
}

.title-box:hover {
    transform: scaleY(1.5);
    transform: scaleX(1.03);
}

.header i {
    padding-right: 15px;
    color: white;
    transition: all 300ms ease;
}

.header a {
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border-bottom: 2px dashed transparent;
    margin-top: 2px;
    padding-bottom: 2px;
    transition: all 300ms ease;
}

.header a:hover {
    color: var(--secondary-color);
    text-shadow: 0px 0px 10px var(--secondary-color);
    border-bottom: 2px dashed var(--secondary-color);
}

.header a:active {
    opacity: 0.6;
}