@import url('https://fonts.googleapis.com/css2?family=Chivo&family=Linefont:wght@300&family=Roboto+Slab:wght@700&display=swap');

* {
    padding: 0;
    margin: 0;
    font-family: Chivo ,Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style-type: none;
    color: white;
}

body { 
    background-color: black;
  }

::selection {
    color: red;
    background-color: #363636;
    border-radius: 80px;
}


/* Nav-bar */

.nav-contain {
  display: flex;
  background-color: #363636;
  margin: 0;
  padding: 18px 20px;
}

.nav-contain {
  border-left: 5px solid red;
}

.nav-contain > a {
  font-size: 20px;
  padding: 8px;
  text-align: center;
  transition: transform .2s;
  list-style-type: none;
  text-decoration: none;
}

.nav-contain > a:hover {
  cursor: pointer;
  color: red;
  transform: scale(1.2);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.nav-contain-ri {
  margin-right: auto;
}

.nav-contain > a {
  text-decoration: none;
}

.gal {
    border-style: solid;
    border-color: red;
    background-color: #303030;
    padding: 8px;
    margin: 20px;
    text-align: center;
    color: white;
    width: 100;
}

.gal-p {
    color: white;
}

.gal-n {
    font-weight: bold;
    color: white;
}

img {
    pointer-events: none;
    width: 5%;
    height: 5%;
}
  


  .footer {
    background-color: red;
    margin-top: 26px;
    width: 100%;
    color: white;
    text-align: center; 
    font-size: 25px;
}

.footer-e:hover {
    color: orange
}

/* CUSTOM SCROLL BAR */

::-webkit-scrollbar {
    width: 5px;
  }
  
   
  ::-webkit-scrollbar-thumb {
    background: red; 
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #cc1111; 
  }

  /* Buttom */

  #myBtn {
    text-align: center;
    display: none;
    margin: 10px;
    position: fixed;
    bottom: 25px;
    right: 30px;
    z-index: 99;
    font-size: 0px;
    border: none;
    outline: none;
    background-color: black;
    color: red;
    cursor: pointer;
    padding: 15px;
    border-radius: 8px;
  }
  
  #myBtn:hover {
    background-color: #555;
  }