* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    overflow-y: hidden;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    height: 120rem;
}

body {
    min-height: 100vh;
    max-width: 100vw;
    background-color: #fefefe;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

::-webkit-scrollbar {
    width: 10px; 
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #7a7a7a; 
    border-radius: 10px; 
}

::-webkit-scrollbar-track {
    width: 5px; 
    background-color: transparent;
}

.loader-container {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loader {
    clear: both;
    width: 2rem;
    height: 2rem;
    margin: 1rem auto;
    border: 0.0625rem #000 solid;
    border-radius: 0.25rem;
    position: relative;
    background: linear-gradient(45deg, transparent 49%, #000 50%, #000 50%, transparent 51%, transparent),
                  linear-gradient(-45deg, transparent 49%, #000 50%, #000 50%, transparent 51%, transparent);
    background-size: 1rem 1rem;
    background-position: 0% 0%;
    -webkit-animation: spTexture 1s infinite linear;
    animation: spTexture 1s infinite linear;
  }
  
  @keyframes spTexture {
    from {
      background-position: 0 0;
    }
  
    to {
      background-position: -1rem 0;
    }
  }

.prompt {
    border-radius: 20px;
    width: 35em;
    height: 30em;
    background-color: #ececec;
    position: fixed;
    z-index: 9996;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
    text-align: justify;
    transform-origin: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    animation: promptpopup 0.5s ease; 
}

.prompt ::selection {
    background-color: gray;
}

div.prompt .margin-top {
    z-index: 9999;
    width: 100%;
    height: 50px;
    background-color: #c6c6c6cd;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cross-container {
    height: 100%;
    width: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

div.cross-container svg {
    fill: rgb(112, 112, 112) ;
    height: 1rem;
    width: 1rem;
    position: absolute;
    cursor: pointer;
    transition: all 0.5s ease;
    right: 2rem;
}
div.cross-container:hover svg {
    fill: #ff0000;
    rotate: 90deg;
}

.icon {
    height: 4rem;
    position: absolute;
    fill: #787878;
    margin-bottom: 9rem;
}

div.prompt h1 {
    font-family: 'DM Sans', sans-serif;
    color: #303030;
}

div.prompt p {
    font-family: 'DM Sans', sans-serif;
    position: absolute;
    width: 80%;
    color: #292929;
    margin-top: 9rem;
}

.gotomail {
    width: 8rem;
    height: 2.5rem;
    background-color: #000000;
    color: white;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0;
    right: 0;
    margin-bottom: 1.5rem;
    margin-right: 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gotomail:hover {
    background-color: #252525;
}

div.prompt .cancel {
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 2.5rem;
    border: 1px solid #303030;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

div.prompt .cancel:hover {
    background-color: rgba(36, 36, 36, 0.09);
}

.message-sent {
    border-radius: 20px;
    width: 35em;
    height: 30em;
    background-color: #ececec;
    position: fixed;
    z-index: 9996;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    justify-content: center;
    text-align: justify;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

div.message-sent .margin-top {
    z-index: 9999;
    width: 100%;
    height: 50px;
    background-color: #c6c6c6cd;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

div.message-sent .cancel {
    position: absolute;
    border-radius: 5px;
    bottom: 0;
    left: 0;
    width: 6rem;
    height: 2.5rem;
    border: 1px solid #303030;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .2s;
}

div.message-sent .cancel:hover {
    background-color: rgba(36, 36, 36, 0.09);
}

div.message-sent h1 {
    font-family: 'DM Sans', sans-serif;
    color: #303030;
}

div.message-sent p {
    font-family: 'DM Sans', sans-serif;
    position: absolute;
    width: 80%;
    color: #292929;
    margin-top: 9rem;
}

@keyframes promptpopup {
    from {
        transform: scale(0.2);
        opacity: 0.5;
        transform: translate(-50%, 100%);
    }
    to {
        transform: scale(1);
        opacity: 1;
        transform: translate(-50%, -50%);
    }
  }

.menu-container input {
    position: fixed;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
  .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    background-color: #bfbfb1;
    width: 4rem;
    height: 4rem;
    margin-top: 2rem;
    margin-left: 2rem;
    border-radius: 50px;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.171);
  }
  
  .checkmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 1.3em;
    height: 1.3em;
  }
  
  
  .checkmark span {
    width: 27px;
    margin-top: 1.5px;
    height: 2px;
    background-color: rgb(0, 0, 0);
    position: absolute;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    overflow: visible;
  }
  
  .checkmark span:nth-child(1) {
    top: 10%;
  }
  
  .checkmark span:nth-child(2) {
    top: 50%;
  }
  .menu-container input:checked  + .menu-container {
    background-color: transparent;
  }
  
  .menu-container input:checked + .checkmark span:nth-child(1){
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }
  
  .menu-container input:checked + .checkmark span:nth-child(2) {
    top: 50%;
    margin-top: 0;
    transform: translateY(-50%) rotate(-45deg);
    -webkit-transform: translateY(-50%) rotate(-45deg);
    -moz-transform: translateY(-50%) rotate(-45deg);
    -ms-transform: translateY(-50%) rotate(-45deg);
    -o-transform: translateY(-50%) rotate(-45deg);
  }

  .menu {
    height: 100vh;
    width: 27rem;
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(19, 19, 19);
    z-index: 99;
    overflow: hidden;
    animation: menuSlideIn 0.5s forwards;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }

.menu-content {
    width: 100%;
    height: 40rem;
    position: absolute;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-top: 8rem;
    top: 0;
    left: 0;
}

.menu.hidden {
    opacity: 0;
    background-color: transparent;
}

div.menu-content span {
    margin-left: 2rem;
    margin-top: 1.5rem;
    font-weight: 600;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    font-family: 'Inter Tight', sans-serif;
    text-transform: uppercase;
    font-size: 2rem;
    overflow: hidden;
}

div.menu-content a:hover,
div.menu-content span:hover {
    color: #bfbfb1;
    transition: all 700ms ease;
    transition-timing-function: cubic-bezier(.16,1,.3,1);
    transform: translateX(5px)
}

div.menu-email {
    width: 100%;
    height: 9rem;
    padding: 0.5rem;
    display: flex;
    align-items: flex-start;
    position: absolute;
    bottom: 0;
}

div.menu-email .email {
    color: rgb(119, 119, 119);
    text-transform: uppercase;
    font-size: 1rem;
    font-family: 'Inter Tight', sans-serif;
    font-weight: 600;
    margin-left: 1rem;
    margin-top: 2rem;
}

div.menu-email a {
    color: rgb(171, 166, 166);
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-top: 4rem;
    margin-left: 1rem;
    position: absolute;
    background-image: linear-gradient(rgb(171, 166, 166) 0 0);
    background-position: 0 100%; /*OR bottom left*/
    background-size: 0% 2px;
    background-repeat: no-repeat;
    transition:
      background-size 0.3s,
      background-position 0s 0.3s;
}

div.menu-email a:hover {
    background-position: 100% 100%; 
    background-size: 100% 2px;
}

div.menu-content a,
div.menu-content span {
    transition: all 0.2s ease;
    transform: translateX(0);
}

div.menu-content a {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: white;
    text-decoration: none;
}


::selection {
    background-color: #a79e9b;
    color: rgb(23, 23, 23);
}

.downIcon {
    height: 1rem;
    fill: #8e8e84;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 29rem;
    margin-right: 6rem;
    cursor: pointer;
    animation: fade 2s ease;
}

.title-container {
    width: 70vw;
    height: 22rem;
    display: flex;
    position: absolute;
    flex-direction: column;
    left: 0;
    top: 0;
    margin-top: 5rem;
    margin-left: 4rem;  
}

.main-title {
    width: 70vw;
    color: #252525;
    position: absolute;
    font-weight: 800;
    font-family: 'Inter Tight', sans-serif;
    text-transform: uppercase;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    overflow: hidden;
    font-size: 7rem;
}
.second-title {
    width: 70vw;
    color: #252525;
    position: absolute;
    font-weight: 800;
    font-family: 'Inter Tight', sans-serif;
    text-transform: uppercase;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    overflow: hidden;
    font-size: 7rem;
    margin-top: 7rem;
}

.second-title span:nth-child(1)::selection{
    color: #3c3131;
}

.main-titlewrapper {
    animation: slideup 0.2s forwards;    
}

.main-title span {
    position: relative;
    transition: all 1.3s ease;
  }
.second-title span {
    position: relative;
    transition: all 1.3s ease;
  }
  
  .main-title span:nth-child(1) {
    animation: slideup 0.8s ease;
  }
  
  .main-title span:nth-child(2) {
    animation: slideup 0.9s ease;
  }
  
  .main-title span:nth-child(3) {
    animation: slideup 1s ease;
  }
  
  .second-title span:nth-child(1) {
    animation: slideup 1.2s ease;
    color: #5b4b4b;
  }
  
  .second-title span:nth-child(2) {
    animation: slideup 1.3s ease;
  }
  
  .second-title span:nth-child(3) {
    animation: slideup 1.4s ease;
  }

.main-p {
    width: 50vw;
    color: #4e4a44;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    font-size: 1.5rem;
    left: 0;
    top: 0;
    margin-top: 24rem;
    margin-left: 4rem;
}

.main-pcontent {
    position: relative;
    animation: slideup 1.5s ease;
}

.main-pcontent::selection {
    background-color: rgb(38, 38, 38);
    color: rgb(38, 38, 38);
}   

.main-p::selection {
    background-color: rgb(247, 247, 247);
    color: black;
}

hr {
        border: none;
        border-top: 1px solid #3f3f3f; /* Adjust color and thickness as needed */
        margin: 20px 0; /* Add space around the line */
        width: 100vw;
        margin-top: 36rem;
}

.main-container {
    min-height: 100vh;
    height: 160rem;
    width: max-content;
    position: relative;

}

.to-email {
    width: 50vw;
    color: #000000;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    font-weight: 300;
    font-size: 2rem;
    z-index: 1;
    left: 0;
    margin-left: 15rem;
    margin-top: 7rem;
}

.emailid {
    width: 17rem;
    height:4rem;
    position: absolute;
    background-color: #aa959576;
    color: rgba(0, 0, 0, 0.716);
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    left: 0;
    margin-left: 20rem;
    margin-top: 6.3rem;
    padding: 0 1rem; 
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

.emailsvg {
    height: 15px;
    width: 30px;
    fill: rgba(0, 0, 0, 0.663);
    margin-right: 0.5rem; 
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.no1-text {
    width: 50vw;
    color: #393632;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    cursor: auto;
    font-size: 2rem;
    z-index: 1;
    left: 0;
    margin-left: 15rem;
    margin-top: 16rem;
}

#first-name:hover, #second-name:hover, #fourth-name:hover {
    border-color: #d2d2d2;
}

.required {
    color: rgb(155, 49, 49);
    margin-left: 0.5rem;
}
#first-name {
    width: 35rem;
    padding: 0.75rem;
    border: 1px solid transparent; 
    border-radius: 30px;
    font-size: 1rem; 
    color: #000000; 
    background-color: transparent;
    position: absolute;
    left: 0;
    cursor: text;
    margin-left: 15rem;
    margin-top: 21rem;
    transition: all 0.2s ease;
    font-family: 'Roboto Mono', monospace;
    pointer-events: auto;
    z-index: 12;
}


#first-name:focus {
    border-color: rgb(0, 0, 0);
    outline: none;
}

/* Styles for the placeholder text */
#first-name::placeholder {
    color: #6e6e6e; 
    font-style: bold; 
}

.no2-text {
    width: 50vw;
    color: #393632;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    cursor: auto;
    font-size: 2rem;
    z-index: 1;
    left: 0;
    margin-left: 15rem;
    margin-top: 28rem;
}

#second-name {
    width: 35rem;
    padding: 0.75rem;
    border: 1px solid transparent; 
    border-radius: 30px;
    font-size: 1rem; 
    color: #000000; 
    background-color: transparent;
    position: absolute;
    left: 0;
    cursor: text;
    margin-left: 15rem;
    margin-top: 34rem;
    transition: all 0.2s ease;
    pointer-events: auto;
    font-family: 'Roboto Mono', monospace;
    z-index: 12;
}


#second-name:focus {
    border-color: rgb(0, 0, 0);
    outline: none;
}

#second-name::placeholder {
    color: #6e6e6e; 
    font-style: bold; 
    font-family: 'Roboto Mono', monospace;
}

.no3-text {
    width: 50vw;
    color: #393632;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    cursor: auto;
    font-size: 2rem;
    z-index: 1;
    left: 0;
    margin-left: 15rem;
    margin-top: 42rem;
}

.options-container {
  height: 12rem;
  width: 23rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 23px;
  position: absolute;
  margin-left: 15rem;
  margin-top: 47rem;
  left: 0;
}

.option-label {
  user-select: none;
  height: 4rem;
  width: 23rem;
  font-size: 1.1rem;
  color: #292121;
  border: 2px solid #674848;
  font-family: 'DM Sans', sans-serif;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.option-label:hover {
  scale: 0.98;
}
.option-label:active {
    scale: 0.95;
    background-color: rgb(50, 49, 49);
    color: white;
}

input[type="checkbox"] {
  display: none;
}

input[type="checkbox"]:checked + .option-label {
  background-color: rgb(41, 37, 37);
  border: 2px solid rgb(41, 37, 37);
  color: white;
}
  
  .no4-text {
    width: 50vw;
    color: #393632;
    position: absolute;
    font-family: 'DM Sans', sans-serif;
    hyphens: auto;
    text-align: left;
    word-break: break-word;  
    cursor: auto;
    font-size: 2rem;
    z-index: 1;
    left: 0;
    margin-left: 15rem;
    margin-top: 60rem;
}

#fourth-name {
    width: 50rem;
    height: 15rem;
    padding: 0.75rem;
    border: 1px solid transparent; 
    border-radius: 20px;
    font-size: 1rem; 
    color: #000000; 
    background-color: transparent;
    position: absolute;
    left: 0;
    cursor: text;
    margin-left: 15rem;
    margin-top: 67rem;
    transition: all 0.2s ease;
    font-family: 'Roboto Mono', monospace;
    pointer-events: auto;
    vertical-align: top;
    resize: none;
    z-index: 12;
}

#fourth-name:focus {
    border-color: rgb(0, 0, 0);
    outline: none;
}

/* Styles for the placeholder text */
#fourth-name::placeholder {
    color: #6e6e6e; 
    font-style: bold; 
}

.Btn {
    width: 10rem;
    height: 4rem;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dfdfdf;
    border: none;
    color: rgb(0, 0, 0);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
    position: absolute;
    overflow: hidden;
    border-radius: 10px;
    transition-duration: 1s;
    margin-top: 94rem;
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }

  .Btn::before {
    width: 10rem;
    height: 10rem;
    position: absolute;
    content: "";
    background-color: rgb(204, 204, 204);
    border-radius: 50%;
    left: -100%;
    top: 0;
    transition-duration: .7s;
    transform-origin: center;
    mix-blend-mode: difference;
  }
  
  .Btn:hover::before {
    transition-duration: .5s;
    left: 0;
    border-radius: 0;
  }

  .email-copied {
    background-color: rgb(32, 32, 32);
    height: 60vh;
    width: 40vw;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    z-index: 999;
    border-radius: 20px;
    border: 1px solid rgb(0, 0, 0);
    box-shadow: rgb(0, 0, 0) 0px 4px 12px;
    display: none;
    animation: popup .2s ease;
  }

  .email-copiedcontent {
    background-color: #292929;
    height: 90%;
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  
  @keyframes menuSlideIn {    
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(0);
    }
}

@keyframes slideup {
    0% {
        top: 30rem;
    }
    100% {
        top: 0;
    }
}

@media only screen and (max-width: 400px) {
    .title-container {
        margin-left: 2rem;
    }
    .main-title {
        font-size: 2.5rem;
    }
    .second-title {
        margin-top: 6rem;
        font-size: 2.5rem;
    }
    .main-p {
        font-size: 1rem;
        margin-top: 19rem;
        margin-left: 2rem;
    }
    .downIcon {
        display: none;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 2rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 70vw;
        margin-left: 2rem;
        margin-top: 47rem;
    }
    .option-label {
        width: 70vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 2rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 6rem;
        width: 70vw;
    }
    .prompt {
        width: 90vw;
        height: 35em;
    }
    div.prompt p {
        margin-top: 11rem;
    }
    div.prompt .icon {
        margin-top: -4em;
    }
    div.prompt h1 {
        margin-top: -4rem;
    }
    .message-sent {
        width: 90vw;
        height: 20em;
    }
    div.message-sent .icon {
        margin-top: 6rem;
    }
    div.message-sent h1 {
        margin-top: 7rem;
    }
    div.message-sent p {
       display: none;
    }
}

@media only screen and (max-width: 500px) and (min-width: 400px) {
    .title-container {
        margin-left: 2rem;
    }
    .main-title {
        font-size: 3rem;
    }
    .second-title {
        font-size: 3rem;
    }
    .main-p {
        font-size: 1.2rem;
        margin-left: 2rem;
        margin-top: 22rem;
    }
    .downIcon {
        display: none;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 2rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 70vw;
        margin-left: 2rem;
        margin-top: 48rem;
    }
    .option-label {
        width: 70vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 2rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 6rem;
    }
    .prompt {
        width: 100vw;
        height: 30em;
    }
    div.prompt p {
        margin-top: 11rem;
    }
    .message-sent {
        width: 100vw;
        height: 30em;
    }
    div.message-sent p {
        margin-top: 11rem;
    }
}

@media only screen and (max-width: 730px) and (min-width: 540px){
    .main-title {
        font-size: 4rem;
    }
    .second-title {
        margin-top: 9rem;
        font-size: 4rem;
    }
    .main-p {
        font-size: 1.2rem;
        margin-top: 25rem;
    }
    .downIcon {
        display: none;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 3rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 70vw;
        margin-left: 3rem;
        margin-top: 46rem;
    }
    .option-label {
        width: 70vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 3rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 6rem;
    }
}
@media only screen and (max-width: 540px) and (min-width: 500px){
    .title-container {
        margin-left: 2rem;
    }
    .main-title {
        font-size: 3rem;
    }
    .second-title {
        margin-top: 7rem;
        font-size: 3rem;
    }
    .main-p {
        font-size: 1.2rem;
        margin-top: 22rem;
        margin-left: 2rem;
    }
    .downIcon {
        display: none;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 3rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 70vw;
        margin-left: 3rem;
        margin-top: 47rem;
    }
    .option-label {
        width: 70vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 3rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 6rem;
    }
}

@media only screen and (max-width: 900px) and (min-width: 730px) {
    .main-title {
        font-size: 4rem;
        width: 50vw;
    }
    .second-title {
        margin-top: 9rem;
        font-size: 4rem;
        width: 40vw;
    }
    .main-p {
        font-size: 1.2rem;
        margin-top: 25rem;
    }
    .downIcon {
        display: none;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 3rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 60vw;
        margin-left: 3rem;
        margin-top: 46rem;
    }
    .option-label {
        width: 45vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 3rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 6rem;
    }
}

@media only screen and (min-width: 900px) {
    .main-title {
        width: 70vw;
        font-size: 5rem;
    }
    .second-title {
        margin-top: 11rem;
        font-size: 5rem;
        width: 70vw;
    }
    .main-p {
        font-size: 1.2rem;
        margin-top: 29rem;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 6rem;
        font-size: 1.5rem;
        width: 90vw;
    }
    .options-container {
        width: 60vw;
        margin-left: 6rem;
        margin-top: 46rem;
    }
    .option-label {
        width: 60vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 6rem;
        width: 80vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
    }
    .emailid {
        margin-left: 10rem;
    }
}

@media only screen and (min-width: 1220px) {
    .main-title {
        width: 100vw;
        font-size: 7rem;
    }
    .second-title {
        margin-top: 7rem;
        font-size: 7rem;
        width: 100vw;
    }
    .main-p {
        font-size: 1.5rem;
        margin-top: 23rem;
    }
    .downIcon {
        display: block;
    }
    .to-email, .no1-text, .no2-text, .no3-text, .no4-text {
        margin-left: 15rem;
        font-size: 1.5rem;
        width: 60vw;
    }
    .options-container {
        width: 30vw;
        margin-left: 15rem;
        margin-top: 46rem;
    }
    .option-label {
        width: 30vw;
    }
    #first-name, #second-name, #fourth-name {
        margin-left: 15rem;
        width: 40vw;
    }
    .no4-text {
        margin-top: 65rem;
    }
    #fourth-name {
        margin-top: 71rem;
        height: 19rem;
        width: 60vw;
    }
    .emailid {
        margin-left: 20rem;
    }
    .Btn {
        margin-top: 98rem;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1220px) {
    .main-title {
        margin-top: 3rem;
    }
    .second-title {
        margin-top: 9rem;
    }
    .main-p {
        margin-top: 25rem;
    }
}

@media only screen and (max-width: 1000px) {
    .option-label:active {
        scale: 0.98;
    }
}

@media only screen and (max-width: 335px) {
    .second-title {
        margin-top: 9rem;
    }
    .main-p {
        margin-top: 23rem;
    }
}

@media only screen and (min-width: 400px) and (max-width: 405px) {
    .second-title {
        margin-top: 10rem;
    }
    .main-p {
        font-size: 0.9rem;
        margin-top: 25rem;
    }
}
