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

    background-color: cadetblue;
}
.main{

    background-image: url("../media/Keanu-Reeves.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
}
.main-title{
    width: 100%;
    padding: 20px 0 20px 0;

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

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

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

}

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

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

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

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

.award-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;
}

.award-winner{
    width: calc(80% - 80px);
    margin: 0 10% 10px 10%;
    padding: 30px 40px 30px 40px;

    border-color: black;
    border-width: 2px;
    border-style: solid;
    background-color: gold;
}

.award-winner-name{
    font-size: 30pt;
    font-weight: bold;
    text-align: center;
}

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

.award-winner-tie{
    width: 25%;
    margin: 0 20px 20px 0;
    padding: 30px 20px 30px 20px;

    border-color: black;
    border-width: 2px;
    border-style: solid;
    background-color: gold;
}

.award-winner-tie-name{
    font-size: 22pt;
    font-weight: bold;
    text-align: center;
}

.award-loser-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;
}

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

.award-loser{
    width: 15%;
    margin: 0 20px 20px 0;
    padding: 10px 20px 10px 20px;

    border-color: black;
    border-width: 2px;
    border-style: solid;
    background-color: #CD7F32;
}

.award-loser-name{
    font-size: 15pt;
    font-weight: bold;
    text-align: center;
}


.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;
}

.music{
    position: fixed;
    right: 10px;
    bottom: 10px;
}
