h1, h2, h3, h4, h5, h6 {
    font-family: 'Merriweather', serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-weight: 600;
    font-family: 'Merriweather', serif;
}

a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

ul {
    list-style: none;
}

body {
  font-family: 'Helvetica', sans-serif;
    font-size: 16px;
    line-height: 24px;
}
nav{
  font-size: 18px;
  font-weight: 600;
  font-family: 'Helvetica', sans-serif;
}


#wrapper {
    width: 10vw;
    height: 10vh;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-super-cool-btn {
    position: relative;
    text-decoration: none;
    color: #fff;
    letter-spacing: 1px;
    font-size: 1.25rem;
    box-sizing: border-box;
}

.my-super-cool-btn span {
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 45px;
    margin-left: 1x;
    margin-bottom: 13px;
}

.my-super-cool-btn span:before {
    content: '';
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    border-radius: 12%;
    border: 3px solid #FFD700;
    box-sizing: border-box;
    transition: all 0.85s cubic-bezier(0.25, 1, 0.33, 1);
    box-shadow: 0 30px 85px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}

.my-super-cool-btn:hover span:before {
    transform: scale(0.8);
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.14), 0 15px 35px rgba(0, 0, 0, 0.14);
}

@keyframes intro {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

#form_buttons {
 /* Button background color */
  /* Button text color */
  border: none; /* Remove default border */
  padding: 12px 24px;
  background-color: gold;
  height: 47px;
  width: 115px; /* Padding for the button */
  font-size: 17px; /* Font size of the text */
  border-radius:0px; /* Rounded corners */
  cursor: pointer; /* Pointer cursor on hover */
  transition: background-color 0.4s ease; /* Smooth transition for background color */
}

#form_buttons:hover {
  background-color:  #FFE680;/* Hover color */
}



/* whats app css */
.whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            cursor: pointer;
        }

        .whatsapp-button img {
            width: 30px;
            height: 30px;
        }

        .whatsapp-button:hover {
            background-color: #128C7E;
        }
/* end */