html, body {
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
}

#main {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #9150fc;
}

#talk-to-me-form {
    height: 33%;
    width: 93%;
    max-width: 702x;
    border-radius: 21px;
    background-color: #f0f0f0;
    box-shadow: inset black 0px 0px 20px 4px;
    display: flex;
    flex-direction: column;
    gap: 3%;
    justify-content: center;
    align-items: center;
}

#talk-to-me-form > * {
    font-size: clamp(2rem, 6vw, 4rem);
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 1%;
    padding-bottom: 1%;
}

#talk-to-me-form > button {
    padding: 3%;
    color: white;
    border-radius: 21px;
    background-color: #6701ff;
}
