body{
    background-image: url("classbg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-color: black;
    color: white;
    
}

.container {
  display: grid;
  grid-template-columns: 1fr 4fr;
  background-color: rgba(39, 39, 39, 0.329);
  
  width: 50%;
  margin: auto;
  margin-top:1%;
}

.header{
    grid-column: 1/ span 5;
    text-align: center;
    border-bottom: 2px solid white;
}

.side{
    grid-column: 1/ span 1;
    padding: 30px;
    padding-top: 60px;
    max-width: 120px;
}

.main{
    grid-column: 2/ span 5;
    padding-right: 50px;
}

h1{
    font-family:'lucida handwriting' ;
    
}

h2{
    border-bottom: dashed white 2px;
    padding-bottom: 10px;
}

a:visited {
  color: white;
  
}


a:link {
  color: white;
  
}