* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: white;
    background-color: black;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

main {
    display: flex;
    min-width: 35vw;
    justify-content: center;
    align-items: center;
}
main h2 {
    font-size: 2rem;
}
.heading {
    position: absolute;
    top: 4vmax;
    left: 37vmax;
}


form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 10vh 1vw;
    width: 100%;
}

form select,
button,
input {
    width: 50%;
    margin: 1rem;
    height: 2rem;
}

form input {
    /* height: 5vh; */
    font-size: large;
}

form p {
    font-size: large;
}

.dropdown {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown img {
    font-size: 2rem;
    padding: 10px;
}

.message {
    margin: 2vh;
    text-align: center;
    color: black;
    background-image: linear-gradient(red, yellow);
    font-weight: 900;
}

form button {
    font-size: large;
    cursor: pointer;
}
@media screen and (max-width: 550px) {
    .heading{
        position: absolute;
        top: 10vmax;
        left:12vmax;
    }
  }