body {
    font-family: Arial, sans-serif;
    background: url('bg.webp') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;

    margin: 0;
}
.container {
    width: 90%;
    max-width: 800px;
    padding: 20px;
    background: rgba(241, 136, 21, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
	margin-top:20px;
	margin-bottom:20px;
}
h1 a {
 color:#fff;
}

h2 {
 color:#000;
}

a {
text-decoration:none;
	font-weight:bold;
}
a:visited {
 color:#fff;
}




button {
    padding: 15px;
    background: #f08916;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
	font-size:15px;
	margin-top:20px;
	width:100%;
}
button:hover {
    background: #000000;
}
table {
    width: 80%;
    margin: auto;
    border-collapse: collapse;
}
table, th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: left;
}
th {
    background-color: #f08916;
    color: white;
}

input {
	padding:15px;
	font-size:15px;
	margin:5px;
}