/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Jura:wght@300&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Gowun+Batang&family=Quicksand:wght@300..700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: hsl(82, 60%, 28%);
  --title-color: hsl(0, 0%, 100%);
  --text-color: hsl(0, 0%, 100%);
  --body-color: hsl(0, 0%, 95%);
  --container-color: hsl(0, 0%, 100%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Bebas Neue', sans-serif;
  --h2-font-size: 1.25rem;
  --small-font-size: .813rem;
}

/*========== Responsive typography ==========*/
@media screen and (min-width: 1120px) {
  :root {
    --h2-font-size: 1.5rem;
    --small-font-size: .875rem;
  }
}

/*=============== BASE ===============*/
p{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  
}


h1{
  font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    padding: 0;
     margin: 0;
  }

p7{
    font-size: 30px;
    padding: 0;
     margin: 0;
    font-family: 'Bebas Neue', sans-serif;
}

body {
  background-color: black;
  background-image: url(https://f.feridinha.com/ukqJa.gif);
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  
    
}

input-type:submit {
  background-color:black;
  color: white;
  text-align: center;
}

button0:hover {
  background-color: #ffd700;
  color: black;
  opacity: 0.8;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 8px;
  text-decoration:none;
}
 button0 {
  background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  font-size: 16px;
  margin: 1px 1px;
  transition: 0.4s;
  cursor: pointer;
  border-radius: 10px;
  width: 80px;
  height: 20px;
  display: inline-block;
  Text-align: center;
  text-decoration:none;
  padding: 16px 10px;
}
/* rubinho */
button1 {
  font-family: 'Bebas Neue', sans-serif; 
  background-color: black;
  color: white;
  border: 1px solid #ffd700;
  opacity: 1;
  padding: 1px 10px;
  text-align: center;
  font-size: 16px;
  margin: 4px 5px;
  transition: 0.5s;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border-radius: 23px;
  position: relative;
  width:200px;
  
}

button1:hover {
  background-color: #ffd700;
  color: black;
  opacity: 0.8;
  transition: 0.5s;
 
}
 
a:link { 
  color:white;
} 
a:visited { 
  color:white; 
} 
a:hover { 
  color:white; 
} 
a:active { 
  color:white;
}

  
/*scrollllllllll*/
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0px yellow; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #ffd700; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #d1b000; 
}