* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
body{
    background-image: url(/images/Background.png);
}

.container {
    display: flex;
    min-height: 100vh;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: center;
    color: white;
    
    align-items: center;
    border-radius: 5px;
}

.container form {
    width: 670px;
    height: 430px;
    display: flex;
    justify-content: center;
    box-shadow: 20px 20px 5opx rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgb(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.container form input {
    width: 290px;
    height: 40px;
    padding-left: 10px;
    border: none;
    font-size: 14px;
    margin-bottom: 10px;
    background: none;
    border-bottom: 2px solid white;
}

#mobile,
#lname {
    margin-left: 20px;
}

.container form input::placeholder {
    color: white;
}

.main_heading {
    text-align: center;
    margin-top: 20px;
    width: 500px;
    font-weight: 500;
}

.container form textarea {

    font-size: 14px;
    border: none;
    background: none;
    border-bottom: 2px solid white;
    margin-top: 10px;
    font-weight: 200;
    padding: 10px;
    min-width: 600px;
    max-width: 600px;
    max-height: 90px;
    min-height: 90px;
}

.container form textarea::placeholder {
    color: white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.container form #button {
    border: none;
    background-color: white;
    color: rgb(16, 16, 90);
    margin: 10px;
    border-radius: 5px;
}

.container form #button:hover {
    cursor: pointer;
    background-color: rgb(16, 16, 90);
    color: white;


}
@keyframes dance {
    0% {
        letter-spacing: 4px;
    }

    100% {
        letter-spacing: 40px;
    }

}
body>h1 {
    animation: dance 3s ease 0s infinite alternate both;
    background-color: rgba(0, 0, 0, 0.288);
    color: white;
    padding: 20px;
    text-align: center;
    font-size: 220%;
    letter-spacing: 20px;
}
nav {
    width: 100%;
    background-color: rgb(0, 0, 0,0.288);
    font-size: 110%;
    position: sticky;
    top: 1px;
    z-index: 9999;
}

nav ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

nav ul li {
    padding: 10px 20px;
    list-style: none;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px;
}

nav a:hover {
    cursor: pointer;
    color: white;
    background-color: rgb(16, 16, 90);
    border-radius: 5px;
}