.header {
    display: flex;
    flex-direction: row;
    height: 70px;
    width: 100%;
    background: #111;
    box-shadow: #111 0px 0px 5px;
    gap: 30px;
}

.header .site-logo {
    display: flex;
    flex-direction: row;
    position: relative;
    margin-left: 20px;
    width: fit-content;
    left: 0px;
    right: 0px;
    text-decoration: none;
}
.header .site-logo > .icon {
    height: 40px;
    margin-block: auto;
}
.header .site-logo > .name {
    margin-block: auto;
    color: white;
    font-size: 25px;
    margin-left: 8px;
    font-family: Outfit;
}

.header-nav {
    display:flex;
    gap: inherit;
}
.header-link {
    font-family: Outfit;
    text-decoration: none;
    height: fit-content;
    font-size: 16px;
    color: #111;
    margin-block: auto;
    position: relative;
    cursor: pointer;
    transition: 250ms;
    color: white;
}
.header-link:before {    
    background: none repeat scroll 0 0 transparent;
    margin-top: -2px;
    content: "";
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: white;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .header-link:hover:before { 
    width: 100%;
    left: 0;
  }
.header-link:after {
    content: "";
    margin-top: 2px;
    display: block;
    height: 1px;
    left: 50%;
    position: absolute;
    background: white;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
  }
  .header-link:hover:after { 
    width: 100%;
    left: 0;
  }

.header .quick-upload-button {
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit,  minmax(10px, max-content));
    width: 150px;
    height: 45px;
    cursor: pointer;
    transition: 300ms;
    position: relative;
    border-radius: 8px;
    margin-block: auto;
    margin-left: auto;
    margin-right: 10px;
}
.header .quick-upload-button:hover {
    transform: scale(1.05);
}
.header .quick-upload-button:active {
    transform: scale(1);
}
.header .quick-upload-button > .background {
    display: flex;
    margin-block: auto;
    position: absolute;
    margin: auto;
    width: 150px;
    height: 45px;
    outline: 1px solid #aaa;
    outline-offset: -1px;
    border-radius: inherit;
    transition: 300ms;
    background: linear-gradient(45deg,#0d0d0d 0%, #151515 100%);;
    font-size: 16px;
}
.header .quick-upload-button > .shadow {
    display: flex;
    margin-block: auto;
    position: absolute;
    margin: auto;
    width: 150px;
    height: 45px;
    border-radius: inherit;
    background: linear-gradient(-45deg,#8419b6 0,#4d1cf7 100%);
    filter: blur(6px);
}
.header .quick-upload-button > .label {
    z-index: 1;
    margin: auto;
    color: #eee;
    font-family: Poppins;
    pointer-events:none;
    background:none !important;
}

.header .spacer {
    display: flex;
    margin: auto;
}

.header span {
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50vw;
    top: 35px;
}

.header span > a {
    padding: 8px;
    border-radius: 5px;
    background-color: #E32636;
    color: black;
    text-decoration: none;
    font-family: Poppins, Arial, Helvetica, sans-serif;
    font-size: 15px;
    text-align: center;
    text-decoration: none;
    outline: none;
    box-shadow: none;
}
