*{
    position: relative;
}
.body{
    margin: 0;

    background-color: cadetblue;
}
.main{

}
.main-title{
    width: 100%;
    padding: 20px 0 20px 0;

    background-color: darkcyan;
    font-size: 35pt;
    font-weight: bold;
    text-align: center;
}

.link-list{
    padding: 20px 20% 20px 20%;

    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
}

.link-box{
    margin: 0 0 50px 0;

    box-shadow: 0 8px 5px 8px black;
}

.link-title{
    width: 100%;
    padding: 10px 0 10px 0;

    font-size: 25pt;
    font-weight: bold;
    text-align: center;
    text-shadow: -1px 1px 0 white,
                  1px 1px 0 white,
                  1px -1px 0 white,
                 -1px -1px 0 white;
    text-decoration: none;
}

.link-sublist{
    width: 100%;
    padding: 10px 0 0 0;
    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.link{
    width: 25%;
    margin: 0 20px 20px 0;
    padding: 10px 20px 10px 20px;

    border-color: black;
    border-width: 2px;
    border-style: solid;
    background-color: cadetblue;
    text-decoration: none;
}

.link-text{
    color: black;
    font-size: 15pt;
    font-weight: bold;
    text-align: center;
}

.link:hover{
    background-color: dodgerblue;
    cursor: pointer;
}

.notification-box{
    width: 100%;
    position: fixed;
    bottom: 30px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
}

.notification-text:empty{
    background-color: unset;
}

.notification-text{
    padding: 5px 20px 5px 20px;

    background-color: grey;
    font-size: 15pt;
    font-weight: bold;
}

.green{
    background-color: green;
}