@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@400;700&display=swap');

* {
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-weight: 1000;
}

/* width */
::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #f9ffc5;
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: hsl(66, 40%, 70%);
    border-radius: 20px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: hsl(66, 40%, 60%);
  }

body {
    background-color: #f9ffc5;
    margin: 0;
    overflow-x: hidden;
}

nav {
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 70px;
    z-index: 100;
    background-color: #f9ffc5;
    border-radius: 0 0 15px 15px;
    box-shadow: 0px 5px 10px hsl(66, 80%, 80%);
    position: fixed;
}

nav ul {
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin: 0;
    padding-right: 10vw;
}

nav li {
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
}

nav a {
    text-decoration: none;
    color: black;
    padding: 10px 30px;
}

.selectedButton {
    border-radius: 20px;
    background-color: black;
    color: white;
    text-decoration: none;
}

nav a:hover {
    border-radius: 20px;
    background-color: black;
    color: white;
    transition-delay: 0.10s;
}

.mainPage {
    padding-top: 5vw;
}

.header h1 {
    text-align: center;
    margin-bottom: 10vh;
    font-size: 5em;
}

.contentWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 15qvh;
    margin: 0 auto;
}

.content {
    background-color: #e6e6e6;
    width: 80vw;
    border-radius: 20px;
    margin-bottom: 10vh;
    display: flex;
    padding: 5vw;
    box-shadow: 0px 5px 10px #000;
}

.content img {
    object-fit: cover;
    width: 50%;
    max-width: 100%;
    height: 50%;
    margin: auto 0;
    border-radius: 10px;
    box-shadow: 0px 1.2px 2.5px #000;
}

.contentText {
    padding-left: 5vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contentText p {
    margin: 5vh auto;
}

.contentText a {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    color: white;
    border-radius: 20px;
    padding: 7.5px;
    padding-left: 15px;
    padding-right: 15px;
    width: 150px;
    text-decoration: none;
}

footer {
    background-color: black;
    color: white;
    padding-top: 10vh;
    padding-bottom: 10vh;
}

footer p {
    padding-left: 10vw;
}

#loadOverlay{display: none;}