body {
    background-image: url("pixeled-gradient.gif");
    background-size: 100%;
    color: white;
    font-size: 25px;
    font-family: monospace;
    margin: 0;
}

hr{
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid lightgreen;
    margin: 1em 0;
    padding: 0;
}

.nav{
    box-sizing: border-box;
    height: 50px;
    padding: 10px;
    text-align: center;
    background: rgb(244, 76, 146, 0.5);
}

a:hover{
    background-color: lightgreen;
    color: green;
}

a {
    color: white;
    text-decoration: none;
}
h1 {
    font-family: helvetica;
    text-align: center;
    font-size: 70px;
}
h2{
    text-align: center;
    font-size: 20px;
}
p{
    color: white;
    background-color: rgb(244, 76, 146, 0.5);
    background-blend-mode: soft-light;
    padding: 20px;
    font-family: monospace;
}

.container-1{
    display: flex; 
    background: rgba(255, 255, 255, 0.514);
    flex-direction: column; 
    width:100vw; 
    height:100vh; 
    padding:5px; 
    justify-content: center; 
    align-items: center;
}

.container-2{
    display: flex; 
    flex-direction: row; 
    width:100%; 
    height:75%; 
    padding:5px; 
    justify-content: center; 
    align-items: center;
}

.box{
    display: flex; 
    flex-direction: row; 
    width:20%; 
    height:75%; 
    padding:5px; 
    justify-content: space-evenly; 
    align-items: center;
}

.text{
    display: flex; 
    flex-direction: row; 
    width:100%; 
    height:25%; 
    padding:5px; 
    justify-content: start; 
    align-items: start;

}