body {
    font-family: Arial, sans-serif;
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #005fa5;
}

label {
    display: block;
    margin-bottom: 8px;
    color: black;
}
#logo{
    max-width: 80vw;
}

.title{
    max-width: 80vw;
    font-size: 1.2em;
    color: white;
}

.container {
    max-width: 600px;
    margin: 0px auto 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#contain{
    display: flex;
    flex-direction: column;
    align-items: center;
}

form {
    display: grid;
    grid-gap: 10px;
}

h1{
    color: white;
}

.btn1{
    
    display: inline-block;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    border-radius: 500px;
    transition-property: background-color,border-color,color,box-shadow,filter;
    transition-duration: .3s;
    border: 1px solid transparent;
    letter-spacing: 2px;
    max-width: 300px;
    text-transform: uppercase;
    white-space: normal;
    font-weight: 700;
    text-align: center;
    padding: 16px 14px 18px;
    color: #fff;
    box-shadow: inset 0 0 0 2px #fff;
    background-color: transparent;
    max-height: 200px;
}

.btn1:hover{
    color: #005fa5;
    background-color: #fff;
}

.container {
    max-width: 800px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

h1 {
    text-align: center;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

th {
    background-color: #f2f2f2;
}

#result {
    margin-top: 20px;
}

.results-table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 20px;
}

.results-table th, .results-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.results-table th {
    background-color: #f2f2f2;
}