/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
body{
  background-image: url(https://asmodeus-ril.neocities.org/wallpaper.jpg);
  }
  
  
 .tabs .tab h2{
    font-size: 3em;
    color:#75120b;
    opacity: 1.0;
    }
.tabs {
  display: flex;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 50px auto;
  padding: 25px;
  opacity: 0.88
  }
.tabs input[type="radio"]{
  display: none;
  }
.tabs label{
  padding:13px;
  background: #e2e2e2;
  font-weight: bold;
  font-size: 20px;
  border-radius: 15px 15px 0.01px 0.01px;
  }
  
.tabs .tab{
  border-radius: 0.01px 5px 5px 5px;
  width: 100%;
  height:1000px;
  padding: 20px;
  background: #fff;
  order:1;
  display:none 
  }

  .tabs input[type='radio']:checked + label + .tab{
    display: block;
  }
  
  .tabs input[type='radio']:checked + label {
      background: #fff;
  }





