body {
    background-color: burlywood;
}

h1 {
    color: green;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    font-size: 70px;
    text-align: center;
}



h1{
    color: #343a40;
    text-align: center;
    font-family: 'Times New Roman', Times, serif;
    font-size: 40px;
}


.navbar {
    background-color: rgb(78, 92, 211);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    font-size: 16px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #16a581; /
}   



input {
	width: 100%;
	padding: 5px;
	margin: 5px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 1rem;
}


.form-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 20px; 
    background-color: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px; 
}
.form-article {
	background-color: rgb(32, 26, 197);
	padding: 15px;
	border-radius: 5px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 10px; 
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.radio {
    width: 50%;
}

input[type="submit"] {
    background: #2811ac;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    padding: 10px 10px;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #07067a;
}


.container {
    background-color: silver;
    padding: 40px; 
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 800px; 
    text-align: left;
    margin: 20px auto;
}


footer {
    background-color: rgb(182, 110, 3);
    color: aliceblue;
    text-align: center;
    padding: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}
