body {
    font-family: Arial, sans-serif;
    background: #000000;
    margin: 0;
    padding: 0;
    text-align: center;
}
header {
    background: #1d3067;
    color: #fff;
    padding: 2rem 0;
}
main {
    color: #ffffff;
    margin: 2rem auto;
    max-width: 600px;
    background: #1d3067;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
h1 {
    margin-top: 0;
}
img {
    border: #000000 solid 4px;
}

#warning {
    color: rgb(255, 0, 0);
    font-weight: bold;
    margin-top: 2rem;
    text-align: right;
    font-size: 75%;
    display: none;
}

a {
    color: #2a51df;
    text-decoration: none;
    transition: all 0.5s ease;
}

#warning {
    color: #ff4747;
    text-decoration: none;
    transition: all 0.5s ease;
}
a:hover {
    text-decoration: underline;
    font-size: 110%;
}
#silvijf {
    display: inline-block;
    margin-top: 1rem;
    transition: transform 0.5s ease;
}
#silvijf:hover {
    transform: scale(1.05);
}

.button {
    background-color: #2a51df;
    border: #000000 solid 4px;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    transition: transform 0.3s ease;
}
.button:hover {
    background-color: #1d3067;
    transform: scale(1.05);
}