h1 {
    font-family: 'Handjet', sans-serif;
    font-weight: 900;
    font-size: 200px;
    color: rgb(36, 36, 122);
    text-align: center;
    margin-top: 50px;
    margin-bottom: 60px;
    line-height: 150px;

}

h2 {
    font-family: 'Handjet', sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: #555; 
    text-align: center;
    margin-top: 10px;
}

.p1 {
    font-family: 'Handjet', sans-serif;
    background-color: #f4f4f4;
    font-size: 400%;
    margin-bottom: 60px;
    display: flex;
    gap: 40px;
    position: relative;
    align-self: center;
}

body {
    background-image: url('bubbles.gif');
    background-size: cover;           
    background-position: center;      
    background-repeat: no-repeat;     
    background-attachment: fixed;     
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dropbtn {
    background-color: lightblue;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
  }
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    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: #ddd;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {background-color: #3e8e41;}