body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.background-image {
    background-image: url('image.gif'); /* Replace 'path-to-your-image.gif' with your image file path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 50px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}


.hidden {
    display: none;
}
.form-container {
    display: flex;
    flex-direction: column;
    width: 1000px;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
    background-color: #ffffff;
}

.input-container {
    margin-bottom: 35px;
}

input[type="text"] {
    width:700px;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    outline: none;
    font-size: 16px;
    text-align: center;
}


.button-container {
    text-align: center;
}

button[type="submit"] {
    background-color: #007BFF;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

button[type="submit"]:hover {
    background-color: #70ee4a;
}

body {
    margin: 0;
    padding: 0;
    font-family: Georgia, serif;
}

.navbar {
    background-color: rgba(0, 0, 0, 0.3); /* transparent black color */
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
}

.nav-menu {
    float: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    display: inline-block;
}

.nav-item a {
    color: white;
    text-align: center;
    padding: 20px 20px;
    text-decoration: aqua;
    transition: 0.3s;
}

.nav-item a:hover {
    background-color: #ddd;
    color: black;
}

/* Custom Design */
.navbar {
    padding: 15px 0;
}

.nav-menu {
    margin-right: 50px;
}

.nav-item a {
    font-size: 25px;
    border-radius: 50px;
    padding: 8px 18px;
}

.nav-item a:hover {
    background-color: #6dff3c;
    color: rgb(8, 8, 8);
}