/* segnare cose */

body {
  background-image: url("https://i.pinimg.com/1200x/5e/74/e5/5e74e56a1278c219d6cbc0bb08dadea0.jpg");
  color: black;
  font-family: "Pixelify Sans";
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=135329);
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=135327), pointer;
}
 
p {
  font-size: 20px;
}






.computergif{
position:absolute;

}



 /*tutto er menu*/
.warpper{
  position:absolute;
  overflow-y:auto; /* Show scrollbars */
  width:1500px;
  height:auto;
  top:100px; 
  left:120px;
  bottom:60px;
  display:flex;
  flex-direction: column;
  align-items: center;
  
}
.tab{
  cursor: pointer;
  padding:10px 20px;
  background:#708a86;
  display:inline-block;
  color:#fff;
  border-radius:3px 3px 0px 0px;
  box-shadow: 0 0.5rem 0.8rem #00000080;

}


.panels{
  background:#1d2322;
  box-shadow: 0 2rem 2rem #00000080;
  min-height:200px;
  width:100%;
  max-width:1100px;
  max-height:900px;
  border-radius:3px;
  overflow-y:scroll;
  padding:20px;  

}
  
.panel{
  display:none;
  animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
  font-size:1.5em;
  font-weight:bold
}
.radio{
  display:none;
}
#one:checked ~ .panels #one-panel,
#two:checked ~ .panels #two-panel,
#three:checked ~ .panels #three-panel{
  display:block
}
#one:checked ~ .tabs #one-tab,
#two:checked ~ .tabs #two-tab,
#three:checked ~ .tabs #three-tab{
  background:#1d2322;
  color:#000;
  border-top: 3px solid #000;
  
   
}


