body{
    margin: 0px;
    background-image: url("logos/logo2-min.jpg");
    background-size: cover;
}
h1{
    color: whitesmoke;
    text-align: center;
    transition: color 0.5s;
    margin: 10px;
    padding-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1:hover{
    color: firebrick;
}

h2{
    color: whitesmoke;
    text-align: center;
    transition: color 0.5s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h2:hover{
    color: firebrick;
}

h3{
    color: whitesmoke;
    text-align: left;
    transition: color 0.5s;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

h3:hover{
    color: firebrick;
}


.container{
    display: grid;
    grid-template-columns: 1fr;
}




.nav{
    
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin: 10px;
    font-size: 1.2em;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.nav a{
    text-decoration: none;
    transition: color 0.5s;
    font-weight: bolder;
    color: beige;
}

.nav a:hover{
    color: firebrick;
}

.msg{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;    
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    text-align: justify; 
    padding: 5px
}

.msg>.middle_text{
    transition: color 0.5s;
    text-align: justify;
    color:  whitesmoke;
}

.middle_text:hover{
    color: firebrick;
}