body {
    font-family: Arial, sans-serif;
    background-image:url(https://media.tenor.com/TZaIBNauQfAAAAAC/stars-galaxy.gif);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    overflow-y: auto;
}

.container {
    background: rgba(255, 255, 255, 0.829);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 195, 255, 0.1);
    width: 90%;
    max-width: 800px;
    margin-top: 20px;
}

h1 {
    text-align: center;
    margin-bottom: 20px;
}

p {
    text-align: center;
    margin-bottom: 20px;
}

form {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background: white;
    padding: 10px;
    z-index: 1000;
    border-radius: 8px;
}

input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    background-color: #29c1fd;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}
.rounded-image {
    border-radius: 20px;
}

button:hover {
    background-color: #033ddf;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}
