* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #117b96;
    color: #fff;
    overflow: hidden;
}

.main {
    font-size: 5em;
    height: 100vh;         
    justify-content: center;
    align-items: center;
    vertical-align: middle;        
  }
 
section {            
    height: 100vh; 
    width: 77vw;
    text-align: center;   
    padding-top:10vh;
}

.section-title {
    font-size: 2em; 
    margin-top: 10vh;
    font-family: "Permanent Marker", cursive;
    font-weight: 400;
    font-style: normal;
}


.section-content {
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

.navbar {
    overflow: hidden;
    background-color: #094352;
    position: fixed;
    bottom: 0;    
    width: 100vw;
    text-align: center;    
    font-family: "Permanent Marker", cursive;
  }

.navbar-list {
    border: 1px solid #ccc;
    border-width: 1px 0;
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center; /* « The magic. */
}

.navbar li {
    display: inline;
}

.navbar a {
    display: inline-block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px ;
    text-decoration: none;
    font-size: 17px;
  }
  
.navbar a:hover {
    background: #f1f1f1;
    color: #0b5061;
  }
  
.navbar a.active {
    background-color: #4d7e8a;
    color: white;
  }

.container {
    position: absolute;
    left: 1em;  
    height: 100vh;       
}


