body {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    justify-content: space-evenly;
    overflow: hidden;
}
h1 {
    color: black;
    font-size: 50px;
    position: relative;
    /* bottom: 20px; */
}
nav {
      background: var(--primary);
      padding: 0.7rem 0;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2rem;
      margin: 0;
      padding: 0;
      transition: max-height .3s;
    }
    nav a {
      color: var(--light);
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: color .2s;
      padding: 0.3rem 0.7rem;
      border-radius: 1rem;
    }
    nav a.active, nav a:hover {
      background: var(--accent);
      color: var(--primary);
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--light);
      font-size: 2rem;
      position: absolute;
      right: 1.2rem;
      top: 0.7rem;
      cursor: pointer;
      z-index: 101;
    }
    @media (max-width: 700px) {
      nav {
        padding: 0.7rem 0 0.7rem 0;
        position: relative;
        right: 250px;
      }
      .nav-toggle {
        display: block;
      }
      nav ul {
        flex-direction: column;
        align-items: flex-start;
        background: var(--primary);
        position: relative;
        top: 60px;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        gap: 0;
        box-shadow: 0 8px 24px rgba(0,0,0,0.13);
      }
    
      nav ul.open {
        max-height: 400px;
        padding-bottom: 0.7rem;
      }
      nav ul li {
        width: 100%;
      }
      nav ul li a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
        border-radius: 0;
      }
    }


.main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 250px;
}

.main i{
    font-size: 150px;
    color: rgb(0, 0, 0);
    position: relative;
    bottom: 20px;
}


/* @media (min-width:500px) {
    body {
        background-color: black;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    h1 {
        color: white;
        margin-top: 800px;
        position: relative;
        left: 150px;
        bottom: 250px;
        
    }

    img {
        background: linear-gradient(red,blue,yellow);
       height: 200px;

        
    }

    .dropdown {
        display: inline-block;
    }

    .dropdown button {
        background-color: black;
        color: rgb(167, 167, 167);
        font-size: 40px;
        padding: 10px 15px;
        border: none;
        cursor: pointer;
        position: relative;
        right: 800px;
        bottom: 360px;
    }

    .dropdown a {
        display: block;
        color: rgb(0, 0, 0);
        font-size: 20px;
        text-decoration: none;
        padding: 10px 15px;
    }

    .dropdown .content {
        display: none;
        background-color: rgb(162, 162, 162);
        position: relative;
        right: 800px;
        bottom: 376px;
        min-width: 100px;
        box-shadow: 2px 2px 5px rgb(233, 233, 0) ;
    }

    .dropdown:hover .content {
        display: block;
    }

    .dropdown:hover button{
        background-color: brown;
        color: blue;
    }

    .dropdown a:hover {
        background-color: white;
    }
} */
