@import url('https://fonts.googleapis.com/css2?family=Kode+Mono:wght@400..700&family=Oxanium:wght@200..800&family=Special+Elite&display=swap');

body {
  background-image: url('asset_photos/background_tile_5.png');
  background-attachment: fixed;
  background-size: auto;
  background-position: center;
  
  background-color: #222430;
  font-family: Kode Mono;
  
  display: flex;
  justify-content: center;
  align-items: center;
  height:96vh;
  
  cursor: url("https://gifcity.carrd.co/assets/images/gallery292/a0f2bc82.gif?v=e3c0bc0f"), auto;
}

p {
 font-size: 13px; 
 margin-top: 10px;
 margin-bottom: 10px;
}

h1, h2, h3, h4 {
  padding: 0px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.main{
  border: 4px solid transparent;
  border-image: linear-gradient(to bottom, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
  
  background-color: black;
  color: #9e2ef4;
  padding: 10px;
  
  margin-top: 15px;
  margin-bottom: 30px;
  margin-left: 10px;
  margin-right:10px;
  
  text-align: center;
  
  line-height: 120%;
}

@media (max-width: 700px){
  .main{
   width: 90%; 
   
   margin-left: 2px;
   margin-right: 2px;
  }
}

.custom_button {
  background-color: #187E9E;
  color: white;
  
  text-decoration: none;
  
  padding: 8px;
  border-radius: 25px;
}

.custom_button:hover {
  background: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  color: black;
  
  text-decoration: none;
  
  padding: 8px;
  border-radius: 25px;
}

a {
 color: #187E9E;
}

a:hover {
 color: #15b7d4; 
 cursor: url("https://gifcity.carrd.co/assets/images/gallery290/b19e258f.gif?v=e3c0bc0f"), pointer;
}

hr {
  border: 3px dashed #187E9E;
}

.divider {
  width: auto;
  height: 5px;
  
  background: repeating-linear-gradient(
  45deg,
  #187E9E,
  #187E9E 5px,
  #222430 5px,
  #222430 10px
);

  margin-top: 5px;
  margin-bottom: 5px;
}

.banner {
 max-width: 95%;
 max-height: 150px;
 
 margin: 0 auto;
 
 background: linear-gradient(to bottom right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%); 
}

.banner img{
 object-fit: contain;
 height: 100%;
}

.banner_image{
  max-width: 95%;
  max-height: 150px;
  margin: 0 auto;
  
  border: 3px solid;
  border-color: transparent;
  border-image: linear-gradient(to right, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
  border-image-slice: 1;
}



/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #b827fc 0%, #2c90fc 25%, #b8fd33 50%, #fec837 75%, #fd1892 100%);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: white;
}
  
  
  
  
  
  
  
  
  
  
  
  