body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f0f0;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    position: relative;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

h1 {
    margin: 0;
    font-size: 24px;
}

.home-button {
    font-size: 16px;
    background-color: #093679;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    position: absolute;
    top: 20px;
    left: 20px;
}

.home-button:hover {
    text-decoration: underline;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #093679;
    text-decoration: none;
    border-radius: 4px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.btn:hover {
    background-color: #0e4fb0;
}

.btn2 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #049800;
    text-decoration: none;
    border-radius: 4px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.btn2:hover {
    background-color: #36cd32;
}

.btn3 {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #ff7b28;
    text-decoration: none;
    border-radius: 4px;
    flex: 1 1 calc(50% - 10px);
    box-sizing: border-box;
}

.btn3:hover {
    background-color: #ff9d46;
}

footer {
    font-size: 12px;
    color: #888;
    line-height: 1.5;
}

