* {
    margin: 0px;
    padding: 0px;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #888;
}

::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

body {
    overflow-x: hidden;
    background: linear-gradient(90deg, #05d9f5, #0d2dff);
}

.base-container {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    display: flex;
}

.main-wrapper {
    width: 90%;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    margin: 20px;
    min-height: 100vh;
}

button {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.question {
    margin-bottom: 10px;
}

.main-wrapper h1 {
    padding: 10px;
    margin: 10px;
    background-color: #f1f1f1;
    font-size: xx-large;
    width: 98%;
    border-radius: 5px;
}

.question h2 {
    padding: 10px;
    background-color: #f1f1f1;
    font-size: x-large;
    border-radius: 5px;
    font-weight: 300;
}

p.answer {
    padding: 10px;
    font-size: large;
    border-radius: 5px;
    font-weight: 100;
}

.question button {
    padding: 0;
    border: none;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
    box-shadow: 0px 10px 15px -10px black;
    border-radius: 10px;
}

.question button img {
    width: 40px;
    height: 50px;
}

div#box-1 {
    width: 90%;
    height: auto;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    padding: 5px;
    box-shadow: 0px 10px 15px -10px black;
    margin-bottom: 10px;
}

div#box-2 {
    width: 90%;
    height: auto;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    padding: 5px;
    box-shadow: 0px 10px 15px -10px black;
    margin-bottom: 10px;
}

div#box-3 {
    width: 90%;
    height: auto;
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-top-left-radius: 10px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    position: relative;
    padding: 5px;
    box-shadow: 0px 10px 15px -10px black;
    margin-bottom: 10px;
}

div#box-1.hidden {
    display: none;
}

div#box-2.hidden {
    display: none;
}

div#box-3.hidden {
    display: none;
}

.outer-box {
    justify-content: center;
    align-items: center;
    display: flex;
}

.contact-form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: -webkit-fill-available;
}

.contact-form h2 {
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-form .form-group {
    margin-bottom: 10px;
    width: -webkit-fill-available;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 5px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 100%;
}

.contact-form .form-group textarea {
    height: 100px;
}

.contact-form .form-group button {
    padding: 10px;
    border: none;
    background-color: aqua;
    color: white;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    justify-content: center;
}
.contact-form .form-group button:hover {
    background-color: #2980b9;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 40%;
}