* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #1d0fdda6;
    justify-content: center;
    align-items: center;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-size: 3rem;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-right: 1rem;
    padding-left: 1rem;
    zoom: 70%;
}

.button3 {

    max-width: 40vh;
    height: 20px;
    margin-right: 10px;
    background: white;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    margin-left: 500px;
    margin-top: 150px;
    color: #2600ce;
    box-shadow: 0 0 0 7px rgb(141, 240, 128),
        0 0 10px #fff,
        0 0 100px #fff;
    font-weight: bold;
    font-size: 1rem;

}

.button4 {

    max-width: 20vh;
    height: 40px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    margin-left: 150px;
      box-shadow: 0 0 0 3px rgb(209, 44, 15);
    font-weight: bold;
    font-size: 0.5rem;

}
.button5 {

    max-width: 40vh;
    height: 40px;
    border-radius: 50px;
    justify-content: center;
    align-items: center;
    margin-left: 60px;

    box-shadow: 0 0 0 3px rgb(15, 209, 15);
    font-weight: bold;
    font-size: 0.5rem;

}



h1,
h2 {
    font-size: 5rem;
    color: rgb(210, 224, 4);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.2;


}

h1::before {

    content: "🥇";
    display: block;

}

h2::before {
    content: "";
    display: block;
}

.form {

    width: 100%;
    max-width: 32rem;
    font-size: 1.125rem;


}

.form label,
.form input,
.form textarea,
.form button {
    display: block;
    width: 100%;



}

.form label {
    color: aliceblue;
    line-height: 1rem;
    margin-bottom: 0.5rem;
}

.form input,
.form textarea {
    font: inherit;
    padding: 0.8rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 8px;
    transition: border-color, box-shadow 0.2s;

}

.form textarea {
    min-height: 10rem;
    resize: vertical;


}

.form input:hover,
.form input:focus,
.form textarea:hover,
.form textarea:focus {
    outline: none;
    border-color: aqua;
    box-shadow: 0 0 0 3px rgb(57, 146, 72);

}

.form button {
    display: block;
    margin-top: 10px;
    padding: 0.5rem;
    background: rgb(73, 102, 43);
    color: aliceblue;
    font: inherit;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;



}

.form button:hover,
.form button:focus {
    outline: none;
    background: rgb(73, 224, 73);


}