body {
    font-family: Verdana, serif;
    font-size: clamp(2rem, 1vw, 2rem);
    background-color: #ececec;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
}

.roundbox {
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.table {
    text-align: left;
    min-width: 30vw;
}

.center {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

#administration-link {
    display: none;
}

#container {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100vh;
    width: 100vw;

    z-index: 0;

    background-color: #ececec;
}

#navbar {
    text-align: center;
    width: 90vw;
    background-color: #ffffff;
    margin-top: 2vh;
    padding-bottom: 1vh;
}

#content {
    margin-top: 2vh;
    width: 90vw;
    background-color: #ffffff;
    padding-top: 1vh;
    padding-bottom: 1vh;
}

#nav-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2vw;
}

.popUpContainer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* opacity: 0.5;*/
    padding: 0;
    margin: 0;

    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(131, 131, 131, 0.5)
}

.popUp {
    min-width: 20vw;
    min-height: 10vh;
    background-color: #FFFFFF;
    opacity: 1;
    padding-left: 2vw;
    padding-right: 2vw;
    padding-bottom: 2vh;

    border-radius: 10px;
}