@import url('https://css.gg/menu.css');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');





:root{
    --white:#ffffff;    
    --nav:#7d3c98;
    }
    
    *
    {
        margin: 0;
        padding: 0;
    }
    
    body{
        background-color: var(--white);
    }
    .navh1{
     
        font-family: 'Dancing Script', cursive;
        padding: 0 543px;
    }
    .navh1 a 
    {
        text-decoration: none;
        color: rgb(255, 255, 255);
    }
    header
    {
    background-color: var(--nav);
    display: flex;
    height: 50px;
    align-items: center;
    }
    
    ul
    {
        display: flex;
        list-style: none;
        align-items: center;
    }
    
    
  

.dropbtn {
    background-color: #7d3c98;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 22px;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  .dropdown-content a:hover {
  background-color: #f1f1f1;
  border: 2px solid black;
  
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown:hover .dropbtn {
    background-color:rgba(63, 60, 57, 0.158)
  }

.footer{
  background-color: var(--nav);
  height: 24vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Dongle', sans-serif;
  font-size: 24px;
}


.footer a
{
  text-decoration: none;
  color: blue;
  padding: 0 6px
}

  @media only screen and (max-width: 720px) {
    .navh1 {
        font-family: 'Dancing Script', cursive;
        padding: 0 119px;
    }

/* css written by rehxn yt
im a begginer  */