/* ALL */
body{
    font-family: 'Raleway';
    box-sizing: border-box;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: justify;
}
a{
    text-decoration: none;
}


/* CONTENT */
.container header{
    width: 100%;
    height: 100vh;

    background-image: url("../img/home/earth_center.jpeg"); 
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.container h1, a{
    margin: 0;
}
.container h1{
    color: white;
    font-size: 13em;
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container nav{
    width: 100%;
    height: 200px;
    background-color: white;
    color: black;
    display: flex;
}
.container nav a{
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;

    overflow: hidden;
}
.container nav span{
    font-size: xx-large;
    color: black;
}
.container nav a:hover{
    cursor: pointer;
}
.container nav a:hover span{
    font-size: 20em;
}


/* PAGE 2 */
.container2{
    width: 100%;
    height: 100vh;
    background-image: url("../img/home/earth_center.jpeg"); 
    background-color: #cccccc;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: scroll;
}
.container2 h1{
    margin: 0;
    color: white;
    font-size: 13em;
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.container2 header{
    height: 100vh;
}

.container2 nav{
    width: 100%;
    height: 200px;
    background-color: white;
    color: black;
    display: flex;
}
.container2 nav a{
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.container2 nav span{
    font-size: xx-large;
    color: black;

}
.container2 nav a:hover{
    cursor: pointer;
}
.container2 nav a:hover span{
    font-size: 20em;
}