@import url('https://fonts.googleapis.com/css2?family=Exo+2&family=Lato&family=Montserrat:wght@400;600&family=Source+Sans+Pro&display=swap'); /* Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@400;700&family=Readex+Pro:wght@500&display=swap'); /* Inconsolata Font */

body {
    background-color: whitesmoke;
    font-family: 'Montserrat';
    font-size: 14px;
    overflow: hidden;
}

*::-webkit-scrollbar {
    display: none;
}

.container {
    width: 100vw;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
  
.desc {
    font-size: 1.2rem;
    font-family: 'Inconsolata';
    font-weight: 400;
    color: #7b8290;
    margin-top: -15px;
}

.backButton {
    font-size: 1.2rem;
    font-family: 'Inconsolata';
    font-weight: bold;
    opacity: 0.6;
    transition: 0.3s;
}

.backButton:hover {
    font-size: 1.2rem;
    font-family: 'Inconsolata';
    font-weight: bold;
    opacity: 1;
}

h1 {
    color: black;
    font-size: 2em;
}

a {
    text-decoration: none;
}

.navBar {
    margin-top: 3em;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
  
.navBar a {
    margin-left: 1em;
    margin-right: 1em;
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 1.3em;;
    color: black;
    padding: 4px 0;
    transition: 0.5s;
}
  
.navBar a::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    top: 95%;
    left: 0;
    background: black;
    transition: transform 0.5s;
    transform: scaleX(0);
    transform-origin: right;
}
  
.navBar a:hover {
    color: black;
}
  
.navBar a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}
