#fixed{
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    margin: 0;
    box-sizing: border-box;
    position: fixed;
}

header{
    height: 5vw;
    width: 100%;

    display: flex;
    background-color: rgb(50, 50, 50);
}

#icon {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 100%;
}

#icon img {
    width: auto;
    height: 50%;
    object-fit: contain;
}

#icon mark {
    background: none;
    color: white;
    font-size: 1.5vw;
    white-space: nowrap;
}

#hrefs {
    display: flex;
    align-items: center;
    gap: 20px;
}

#hrefs a {
    color: white;
    text-decoration: none;
    font-size: 0.8vw;
}

