#background {
    width: 100%;
    height: 100vh;
    position: relative;
}

#website{
    width: 100%;
    max-height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    max-width: 1000px;
    padding-top: 0px;
}

body{
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: url("images/background.jpg");
    background-size: cover;
}

.spacers {
    height: 15px;
}

.header {
    background: linear-gradient( 180deg, rgba(148, 148, 148, 0.9) 0%, rgba(71, 71, 71, 0.9) 20%, rgba(19, 19, 19, 0.9) 40%, rgba(7, 7, 7, 0.93) 100% );
    border-right: 2px solid #3d3d3d;
    border-left: 2px solid #3d3d3d;
    border-top: 2px solid #3d3d3d;
    backdrop-filter: blur(2px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 60px 70px 0px 0px;
    padding: 15px 10px 13px 30px;
    position: static;
    width: auto;
    margin-top: 0px;
    color: whitesmoke;
    height: 50px;
    font-family: Helvetica;
    font-size: 20px;
}

.logo {
    width: 75px;
    margin-right: 15px;
    margin-left: 3px;
    z-index: 2;
}

.logo-text {
    display: flex;
    align-items: center;
    color: white;
    font-family: Helvetica;
}

.title span {
    font-size: 30px;
    display:inline-block; 
    animation: waveText 5s ease-in-out infinite;  
}

.title span:nth-child(1) {
    animation-delay: 0s;
}
.title span:nth-child(2) {
    animation-delay: 0.2s;
}
.title span:nth-child(3) {
    animation-delay: 0.4s;
}
.title span:nth-child(4) {
    animation-delay: 0.6s;
}
.title span:nth-child(5) {
    animation-delay: 0.8s;
}
.title span:nth-child(6) {
    animation-delay: 1s;
}

@keyframes waveText {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px)
    }
}

.Undertitle {
    font-size: 16px;
}

.bubbleBehindLogo {
    position: absolute;
    width: 150px;
    inset-inline-start: -150px;
    order: 0;
}

.MainContainer {
    background-color: rgba(19, 20, 24, 0.418);
    border-right: 2px solid #363636;
    border-left: 2px solid #363636;
    border-bottom: 2px solid #363636;
    backdrop-filter: blur(1px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    color: #dadada;
    padding: 15px 20px 3px 20px;
    height: 750px;
    overflow-y: hidden;
    overflow-x: auto;
    border-radius: 0px 0px 60px 70px;
}

#headerTabs{
    display:flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Segoe UI';
    font-weight: 1;
}

#headerTabs > div:hover{
    animation: hoverText 0.2s ease-in-out forwards;
}
#headerTabs > div:not(:hover){
    animation: unhoverText 0.1s ease-in-out forwards;
}

#headerTabs > div{
     margin-right: 30px;
}

#headerTabs a {color: inherit}

.selected{
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

@keyframes hoverText {
    0% {
        transform: translateY(0);
    }

    100%{
        transform: translateY(-2px);
    }
}

@keyframes unhoverText {
    0% {
        transform: translateY(-2px);
    }

    100%{
        transform: translateY(0px);
    }
}

#mainBox{
    border: #363636;
    border-width: 2px;  
    width: 100px;
    height: 100px;
}