@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");


body {
font-family: "Montserrat", sans-serif;
margin-top: 65px;
margin-bottom: 65px;
background-color: rgba(0, 0, 0, 0.215);
}

.navMenu {
position: fixed;
background: #272727;
top: 0;
left: 0;
right: 0;
width: 100%;
height: 60px;
display: flex;
justify-content: flex-end;
align-items: center;
}

.navTitle {
    font-size: 1.2em;
    color: #f6f4e6;
    font-weight: 500;
    display: inline-block;
    position: absolute;
    left: 20px;
    }

.navMenu a {
color: #f6f4e6;
text-decoration: none;
font-size: 1.2em;
text-transform: uppercase;
font-weight: 500;
display: inline-block;
padding: 0 20px;
-webkit-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
color: #fddb3a;
}

.navMenu .dot {
  width: 6px;
  height: 6px;
  background: #fddb3a;
  border-radius: 50%;
  opacity: 0;
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover ~ .dot {
  -webkit-transform: translateX(30px);
  transform: translateX(30px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(2):hover ~ .dot {
  -webkit-transform: translateX(110px);
  transform: translateX(110px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(3):hover ~ .dot {
  -webkit-transform: translateX(200px);
  transform: translateX(200px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.navMenu a:nth-child(4):hover ~ .dot {
  -webkit-transform: translateX(285px);
  transform: translateX(285px);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}

.footer {
    background: #272727;
    color: #f6f4e6;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    font-size: 1.2em;
    position: fixed;
    bottom: 0;
    width: 100%;
    left: 0;
    }