@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Courier+Prime:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    margin: 5px 50px 20px 50px;
}
header {
    font-family: 'Montserrat';

    h1 {
        text-align: center;
        font-family: 'Poppins';
        font-size: 40px;
        margin-bottom: 0%;
        background: linear-gradient(45deg, #007bff, #6200ff);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    h2{
        font-size: medium;
    }
}

main {
    font-family: 'Montserrat';
    font-weight: 450;
    li{
        margin-top: 10px;
        margin-bottom: 10px;    
    }
}

a {
  position: relative;
  text-decoration: none;
  color: #111;
  font-weight: 500;
  padding: 0 6px;
  z-index: 1;
}
a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%; 
  background-color: #ffe95d;
  border-radius: 4px; 
  z-index: -1;
  transition: height 0.25s ease-in-out;
}
a:hover::after {
  height: 100%;
}
@media (max-width:800px) {
    body{
        margin: 5px 10px 5px 10px;
    }
}