* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'DM Serif Display', serif;
}

body {
    margin: 0;
    padding: 0;
    background: rgb(26, 10, 61);
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    
    background-image: url('bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; 
}

.navbar {
    background: rgb(26, 10, 61);
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
}

i {
    margin-right: 10px;
  }

.navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

#navbar__logo {
    background-color: rgb(32, 41, 32);
    background-image: linear-gradient(to top, rgb(242, 242, 242) 45%, rgb(79, 46, 93) 70%);
    background-size: 100%;
    -webkit-background-clip: text;
    -moz-background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    font-size: 2.5rem;
}

#navbar__logo img {
    width: 60px;
    padding: 10px;
}

.fa-gem {
    margin-right: 0.5rem;
}

.navbar__menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.navbar__item {
    height: 80px;
    text-align: center;
}

.navbar__links {
    color: #5f7545;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 1rem;
    height: 100%;
}

.navbar__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
    width: 100%;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    padding: 10px 20px;
    height: 100%;
    width: 100%;
    border: none;
    outline: none;
    border-radius: 4px;
    background: rgb(161, 161, 193);
    color: #ffffff;
}

.button:hover {
    background-color: #b61919;
    transition: all 0.3s ease;
}

.navbar__links:hover {
    color: rgb(126, 67, 67);
    transition: all 0.3s ease;
    transform: scale(1.075);
    transition: 0.2s ease-in;
}

@media screen and (max-width: 960px) {
    .navbar__container {
        display: flex;
        justify-content: space-between;
        height: 80px;
        z-index: 1;
        width: 100%;
        max-width: 1300px;
        padding: 0;
    }

    .navbar__menu {
        display: grid;
        grid-template-columns: auto;
        margin: 0;
        width: 100%;
        position: absolute;
        top: -1000px;
        opacity: 0;
        transition: all 0.5s ease;
        height: 50vh;
        z-index: -1;
        background: rgb(121, 143, 121);
    }

    .navbar__menu.active {
        background: rgb(58, 71, 58);
        top: 100%;
        opacity: 1;
        transition: all 0.5s ease;
        z-index: 99;
        height: 50vh;
        font-size: 1.6rem;
    }

    #navbar__logo {
        padding-left: 25px;
    }

    .navbar__toggle .bar {
        width: 25px;
        height: 3px;
        margin: 5px auto;
        transition: all 0.3s ease-in-out;
        background: rgb(10, 85, 68);
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__links {
        text-align: center;
        padding: 2rem;
        width: 100%;
        display: table;
    }

    #mobile-menu {
        position: absolute;
        top: 20%;
        right: 5%;
        transform: translate(5%, 20%);
    }

    .navbar__btn {
        padding-bottom: 2rem;
    }

    .button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30%;
        height: 80px;
        margin: 0;
    }

    .navbar__toggle .bar {
        display: block;
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
 }
  
  .search{
    width: 1000px;
    margin: 10px;
    display: flex;
    flex-direction: column;
    background-color: rgb(160, 144, 178);
    padding: 50px;
    margin-left: 220px;
    border-radius: 10px;
  }

  .text {
    color: rgb(36, 11, 82);
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 20px;
    /* white-space: nowrap;
    overflow: hidden;
    animation: typing 2s steps(18), cursor .4s step-end infinite alternate; */
  } 

  /* @keyframes cursor {
    50% {border-color: transparent}
  }

  @keyframes typing {
    from {width: 0}
  } */
  
  .search h3 {
    text-align: center;
    font-size: 2.5rem;
    color: #d1e0c0;
  }
  
  .search label {
    font-size: 1.3rem;
    padding: 3px 0;
    color: #dfded6;
  }
  
  .search input, textarea {
    background-color: #dfded6;
    padding: 8px;
    border-radius: 5px;
    margin: 5px 0 5px 0;
    border: none;
    box-shadow: 5px 7px 0 0 rgba(56, 29, 84, 0.8);
    font-size: 1rem;
  }
  
  .search button {
    text-align: center;
    background-color: #dfded6;
    border-radius: 5px;
    margin-top: 10px;
    align-self: center;
    font-size: 30px;
    color: #534775;
    cursor: pointer;
    width: 130px;
  }
  
  .search button:hover {
    background-color: #534775;
    transition: all 0.3s ease;
    transform: scale(1.075);
    color: #dfded6;
  }


  .search img {
    border-radius: 10px;
    max-width: 50%;
    max-height: 50%;
    margin-left: 218px;
    margin-right: 200px;
  }

  .about {

    background: rgb(26, 10, 61);
    width: 100%;
    height: 100vh;
  }

  .about h3{

    text-align: center;
    color:#dfded6;
  }





