@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
     
     * {
     font-family: "Poppins", sans-serif;
      }
       
    .lesson {
      background-color: #fff;   
      border-radius: 8px;  
      padding: 10px;
      margin: 5%;  
      margin-top: 20px;
      color: #10494A;  
     }
     
     .heading-image {
        width: 80px;
        height: 80px;
        padding-left: 4px;
        padding-top: 2px;
     }
     
     .heading {
     display: inline-block;
     padding-left: 10%;
     }
     
    hr {
    border-color: #10494A;
    background-color: #10494A;
    height: 5px;
    }
    
    .cover-container {
        padding-left: 25%;
        padding-top: 15px;
    }
        
    .cover {
        align-content: center;
        width: 60%;
        height: 55%;
    }    
    
     .instructions {
      margin: 20px;
    }
    .step {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }
    
    hr {
      border: 1px solid #10494A;
    }
    
    .attachments {
        padding: 6px;
        border: 10px;
        background-color: #10494A;
        border-radius: 10px;
        margin: 10px;
    } 
    
    .backbutton {   
        float: right; 
        position: top;
        top: 0;
        right: 0;
    }
    
    .steps {
        text-align: center;
    }
    
    .stepbystep {
        width: 65%;
        max-height: 6%;
    }
    
    table {
  font-family: "Poppins";
  border-collapse: collapse;
  width: 90%;
}

td, th {
  border: 1px solid #10494A;
  text-align: left;
  padding: 8px;
}
    
     .button {
    transition-duration: 0.4s;
 }
    
 .attachments:hover {
    background-color: #9AD2C9;
 }
    




    .mytabs {
display: flex;
flex-wrap: wrap;
max-width: 1000px;
margin: 20px auto;
padding: 20px;
}

.mytabs input[type="radio"] {
display: none;
}

.mytabs label {
padding: 25px;
background: #10494A;
color: #9AD2C9;
font-weight: bold;
 }
 
.mytabs .tab {
width: 100%;
padding: 20px;
background: #fff;
order: 1;
border-radius: 2px;
color: #10494A;
display: none;
}

.mytabs .tab h3 {
font-size: 2em;
}

.mytabs input[type="radio"]:checked + label + .tab {
display: block;
}

.mytabs input[type="radio"]:checked + label {
background: #9AD2C9;
color: #10494A;
 }
 

