*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

header{
   border-bottom-left-radius:rgb(0, 255, 255) groove; 
   
   padding: 60px;
   display: flex;
   justify-content: center;
   gap: 0px 5px;
   text-align: center;
   color: #333;
}
nav>section.ett>ul{
border-left: rgb(203, 212, 203) double;
background-color: aliceblue;
border-radius: 3px;
justify-content: center;
padding: 10px 20px;
gap: 0px 5px;
width: 150px;
flex: 30%;
}

nav>section.två>ul{
    border-left: rgb(203, 212, 203) double;
    background-color: aliceblue;
    border-radius: 3px;
    justify-content: center;
    padding: 10px 20px;
    gap: 0px 5px;
    width: 150px;
    flex: 70%;
 }

 nav>bar{
     display: flex;
     background-color:#333;
 }

 nav>bar a{
     color: white;
     padding: 14px 20px;
     text-decoration: none;
     text-align: center;
 }

 section>h2.Uppgifter{
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #49494d;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
 }

 section>h2.Lektioner{
    display: inline-block;
    padding: 15px 25px;
    font-size: 24px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #fff;
    background-color: #49494d;
    border: none;
    border-radius: 15px;
    box-shadow: 0 9px #999;
 }

 section {
    flex: 1;
    max-width: 250px;
 }
 .content {
    display: flex;
    justify-content: center; 
    align-items: flex-start; 
    gap: 50px; 
    margin-top: 30px;
  }
  section h2 {
    margin-bottom: 15px;
  }
  section ul {
    margin-top: 10px;
  }

  section ul li a {
    display: block;
    padding: 10px 15px;
    margin: 6px 0;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    background-color: #f0f0f0; 
  }
  
  section ul li a:hover {
    background-color: aliceblue; 
    color: #333;               
    font-weight: bold;         
  }
