* {
    margin: 0;
    box-sizing: border-box;
  }
  .headimg {
    background-image: url(images/pexels-andrey-karpov-3835451-7612424.jpg);
    background-size: 100%;
    background-repeat: no-repeat;
    padding: 40px;
    margin-bottom: 5px;
    border: 8px solid pink;
    border-bottom-right-radius: 15px;
    border-bottom-left-radius: 15px;
  }
  .subheading {
    text-align: center;
    color: white;
}

.welcome {

  h3 {
    width: 100%;
    height: 100px;
    padding-top: 15px;
    border-radius: 15px;
    background-color: lightpink;
    border: 6px dashed pink;
    font-size: 2.70vw;
  }
}

.header:hover {
  transform: scale(1.01); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}


h1 {
    font-family: "Libertinus Keyboard", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 4vw;
    padding: 20px;
}  
p {
    padding: 20px;
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-size: 20px;
    font-style: normal;
    color: rgb(211, 83, 125);
    text-align: center;
    
}
.layout {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;

  display: grid;
  grid:
    "header header header" auto
    "leftSide body rightSide" 1fr
    "footer footer footer" auto
    / auto 33% auto;
  gap: 15px;
}


button {
    font-family: "Chewy", system-ui;
    font-weight: 500;
    font-size: 30px;
    font-style: normal;
    background-color: rgb(253, 202, 211);
    border: 6px solid pink;
    border-radius: 15px;
    padding: 5px;
    padding-left: 10px;
    color: white;
}
button:hover {
  cursor: pointer;
}
h3 {
    background-color: lightpink;
    color: white;
    outline-color: black;
    outline: auto;
    text-align: center;
    border-radius: 50px;
    font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
}
.header { 
    grid-area: header;
    background-color: lightpink;
    padding: 15px;
    margin-top: 10px;
    border-radius: 15px;
    border: dashed 6px pink;
    text-align: center;
    transition: transform .2s; /* Animation */
    

  h2 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-style: normal;
    padding-bottom: 10px;
    color: white;

 }
}
.leftSide {
  grid-area: leftSide; 
  background-color: pink;
  border-radius: 15px;
  
 p {
    height: 300px;
    overflow: auto;
    
 }

}
.body {
  grid-area: body;
  background-color: pink;
  border-radius: 15px;

  p {
    height: 300px;
    overflow: auto;
   }

}
.rightSide {
  grid-area: rightSide;
  background-color: pink;
  border-radius: 15px;

  p {
    height: 300px;
    overflow: auto;
  }

}
.footer {
  grid-area: footer;
  background-color: lightblue;
     

}
.layout2 {
  width: 100%;

  display: flex;
  gap: 0px;


}

.grow1 {

  flex-grow: 1; 

  img {
    width: 100%;
    border-top: 6px solid lightpink;
    border-bottom: 6px solid lightpink;
    padding-bottom: 0px;
      
        
  }
}
.main {
  h2{
font-family: "Chewy", system-ui;
    font-weight: 400;
    font-style: normal;
    padding-bottom: 10px;
  }
  p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
        

  }
}

.credit {
  background-color: lightpink;
  border: 6px solid lightpink;
  padding: 0;
  text-align: center;
  color: white;
  
}

a {
  color: palevioletred;
}


.collapsible {
  background-color: lightpink;
  color: white;
  cursor: pointer;
  padding: 18px;
  width: 100%;
   border: 6px dashed pink;
  border-radius: 15px;
  text-align: center;
  outline: none;
  font-size: 30px;
  font-family: "Chewy", system-ui;
  font-weight: 400;
  font-style: normal;
}

.active, .collapsible:hover {
  background-color: pink;
  font-style: italic;
  border: 6px dashed lightpink;
}

.content {
  padding: 0 18px;
  display: none;
  overflow: hidden;
  background-color: pink;
  border-radius: 15px;

}



@media only screen and (max-width: 600px) {
  .main {

    

    .layout {

      h2 {
        font-size: 2.75vw;
      }
      h3 {
        font-size: 2.5vw;
      }
      p {
        font-size: 1vw;
      }
      
    }
  }
}