:root{
        
}

@font-face {
    font-family: helpingfont;
    src: url(assets/font/helpingfont.ttf);
}

body{
    background-color: slateblue;
    color: white;

    background-image: url(assets/ha_background.png);
    background-size: cover;
    background-repeat: no-repeat;

    font-family: helpingfont;
    font-size: 18px;
}

a{
    color: white;
    cursor: pointer;

    background-color: rgba(15, 27, 43, 0.795);
    border: solid white 2px;
    padding: 8px;

    transition: all 0.2s ease;
}

a:hover{
    background-color: red;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;   
}

#head{
    display: block;
    text-align: center;
}

#sections{
    text-align: center;
}

#content{
    background-color: rgba(15, 27, 43, 0.795);
    text-align: center;
    margin-left: 30%;
    margin-right: 30%;
    margin-top: 16px;

    padding: 12px;

    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    border: solid white 5px;

    height: 32em;
    overflow-y: auto;
}

#content_downloads{
    display: none;
}

#content_history{
    display: none;
}

#content_info{
    display: none;
}

/*ANIMATIONS*/
@keyframes fadein{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

.animation_fadein{
    opacity: 1;
    animation: fadein 1s ease-in;
}