a{
    text-decoration: none;
}

a:visited{
    /* transition: 0.1s ease-in-out; */
    text-decoration: none;
    font-size: 110%; 
}

a:active{
    /* transition: 0.1s ease-out; */
    color: #f7050d;
    font-size: 80%;
}

.background{
    z-index: -2;
    position: fixed;
    width: 100%;
}

.background::after{
    content: '';
    width: 100%;
    height: 1000px;
    background-color: green;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.navbar-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 90vh;
}

#logobox{
    width: 100%;
    height: 100%;
    align-self: flex-end;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo{
    width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;  
}

.logo:active{
    animation: bounce 0.7s;
}

@keyframes bounce { 
    0%, 20%, 50%, 80%, 100% {-webkit-transform: scale(1);} 
    40% {-webkit-transform: scale(0.5);} 
    60% {-webkit-transform: scale(0.8);} 
 } 

#tcc{
    opacity: 1;
    margin-top: 20px;
    width: 100%;
    transition: 0.4s ease-out;
}

.comicaltext{
    margin-top: 15px;
    width: 100%;
}

.navbar{
    display: flex;
    justify-content: center;
}

.navbar-red{
    background-color: #e20000;
    display: flex;
    justify-content: center;
}

.navbar-blue{
    background-color: #33a9db;
    display: flex;
    justify-content: center;
}

.navbar-yellow{
    background-color: #dfbf4b;
}

.navborder{
    /* z-index: -1; */
    
    width: 100%;
    height: 10px;
    text-align: center;
}

.navborder-red{
    background-color: #e20000;
}

.navborder-blue{
    background-color: #33a9db;
}

.navborder-yellow{
    background-color: #ffe055;
}

.bars{
    width: 100%;
    display: flex;
    justify-content: center;
}

.red-bar{
    background-color: #fa001f;
    width: 600px;
    height: 10px;
}

.blue-bar{
    background-color: #00A2E8;
    width: 100%;
    height: 10px;
}

.yellow-bar{
    background-color: #ffd64f;
    width: 100%;
    height: 10px;
}

.navbar-row{
    display: flex;
    justify-content: center;
}

.navbarbuttons{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.btn img{
    /* width: 225px; */
    width: 100%;
}

.btn{
    margin-left: -20px;
    transition: 0.3s ease-out;
    flex-basis: 225px; 
}

.btn:hover{
    transform: translateY(-10px);
}

@media (max-width: 900px){
    .btn{
        margin-left: -25px;
        flex-basis: 200px;
    }
}

@media (max-width: 600px){
    .btn{
        margin-left: -20px;
    }

    #tcc{
        width: 280px;
    }

    .logo{
        width: 250px; 
    }
}

@media (max-width: 565px){
    .btn{
        margin-left: -15px;
        flex-basis: 150px;
    }
}

@media (max-width: 425px){
    .btn{
        margin-left: -15px;
        flex-basis: 130px;
    }
}

@media (max-width: 290px){
    .navbarbuttons{
        margin-right: -5px;
    }

    .btn{
        margin-left: -10px;
        flex-basis: 80px;
    }
}