*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    
font-family: 'Roboto', sans-serif;
}
.container{
    max-width:80%;
    padding:34px;
    margin:auto;
    border-radius:10px;
}

.container h1{
    text-align:center;
    font-family:'Sriracha', cursive;
    font-size:40px;
    margin-bottom:10px;
}

p{
    font-size: 17px;
    text-align: center;
    font-family: 'Sriracha', cursive;
    margin-bottom:15px;
}
input,
textarea,
select{
    border: 2px solid black;
    border-radius: 6px;
    outline: none;
    font-size: 16px;
    width: 80%;
    margin: 11px 0px;
    padding: 7px;
    cursor: text;
}
form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.btn{
    color: white;
    background: purple;
    padding: 8px 12px;
    font-size: 20px;
    border: 2px solid white;
    border-radius: 14px;
    cursor: pointer;
    margin-top: 10px;
}

.btn:hover{
    background: darkmagenta;
}

.submitMsg{
    color: green;
    font-size:22px;
    margin:15px;
}
.bg{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.5;

    z-index: -1;
}
/* .bg{
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0.25;

    z-index: -1;
} */