body {
    background-color: lightgray;
    transform-origin: top;
    transform: scale(0.8);
}

* {
    color: black;
}

.main_div, .h1, .h2, .desc {
    text-align: center;
}

.pic {
    width: 300px;
    height: 300px;
    margin: 10px 0;
    border: 4px solid white;
    border-radius: 150px;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 183, 0, 0.68);
    transition: all 0.4s;
}

.pic:hover {
    width: 350px;
    height: 350px;
    border-radius: 40px;
}

.h1, .h2, .form_title {
    font-family: Arial, Helvetica, sans-serif;
}

.h1 {
    font-size: 60px;
    letter-spacing: -3px;
}

.h2 {
    font-weight: 500;
    font-size: 40px;
    color: rgb(94, 94, 94);
    letter-spacing: 5px;
}

.desc {
    width: 1100px;
    font-size: 25px;
    font-style: oblique;
    color: rgb(92, 92, 92);
    margin: 0 auto 20px;
    letter-spacing: 1px;
}

.name_input, .email_input {
    font-size: 25px;
    margin-top: 10px;
    border: 3px solid rgb(85, 85, 85);
    border-radius: 50px;
    padding: 10px 30px;
    transition: transform 0.4s ease, box-shadow 0.2s;
}

.name_input:focus, .email_input:focus {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgb(255, 183, 0);
}


.form_title {
    font-weight: 500;
    font-size: 35px;
    margin: 20px 0;
    letter-spacing: -1px;
}

.submit {
    font-size: 25px;
    width: 200px;
    height: 50px;
    cursor: pointer;
    color: white;
    background-color: rgb(71, 71, 71);
    border: none;
    border-radius: 70px;
    padding: 5px 10px;
    margin-top: 20px;
    margin-right: 5px;
    transition: background-color 0.2s, opacity 0.15s, box-shadow 0.2s;
}

.submit:hover {
    background-color: black;
    box-shadow: 5px 7px 10px rgba(75, 75, 75, 0.4);
}

.submit:active {
    opacity: 0.6;
}

.dropdown {
    text-align: center;
    font-size: 24px;
    width: 125px;
    height: 50px;
    cursor: pointer;
    color: black;
    background-color: white;
    border: 3px solid rgb(85, 85, 85);
    border-radius: 70px;
    margin-top: 20px;
    margin-right: 7px;
}
