.navbar {
    display: flex;
    align-items: center;
    gap: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    box-sizing: border-box;
    background: white;
    border: 2px solid black;
    font-family: "Sansation", sans-serif;
}

.homebutton {
    height: 50px;
    cursor: pointer;
}

.selectionbuttons {
    cursor: pointer;
    text-decoration: none;
}

.compilerButton{
    height: 30px;
    margin-left: auto;
    cursor: pointer;
}

.tabbutton{
    height: 50px;
    margin-left: auto;
    cursor: pointer;
}

.page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: "Sansation", sans-serif;
    position: relative;
}

.header1{
    font-size: 80px;
    text-align: center;
    padding-top: 70px;
}

.header2{
    font-size: 30px;
    text-align: left;
    padding-top: 70px;
    width: 100%;
}

.line {
    width: 90%;
    border: none;
    height: 2px;
    margin: 20px auto;
    background-color: black;
}

.table{
    width: 70%;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-right: 30%;
}

.row{
    display: flex;
    flex-direction: row;
    background-color: white;
}

.cellVer{
    width: 10%;
    border: 1px solid black;
    padding: 5px;
    overflow:hidden;
    background-color: white;
}

.cellDate{
    width: 20%;
    border: 1px solid black;
    padding: 5px;
    overflow:hidden;
    background-color: white;
}

.cellDesc{
    width: 70%; 
    border: 1px solid black;
    padding: 5px;
    overflow: hidden;
}

@font-face {
    font-family: "Sansation";
    src: url("../fonts/Sansation-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Sansation-Bold";
    src: url("../fonts/Sansation-Regular.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
}
