body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #222;
}

header {
    background-color: #272727;
    color: #f9f9f9;
    font-weight: bold;
    font-size: large;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.logo {
    width: 150px;
    height: auto;
    margin : 10px 0 10px;
}

h2 {
    color: #f9f9f9;
    font-size: x-large;
    margin: 20px 0 10px;
}

p {
    color: #bdbdbd;
    line-height: 1.6;
    margin-top: 5px;
}
.warning {
    background-color: #ff9800;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    margin: 20px 0 20px 0;
    text-align: center;
}

.warning p {
    color: #fff;
    margin: 0;
    font-weight: bold;
}

.section {
    background-color: #333;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.section a {
    color: #4caf50;
    text-decoration: none;
    font-weight: bold;
    font-size: large;
}
.section a:hover {
    text-decoration: underline;
}

footer p{
    text-align: right;
    color: #303030;
    font-size: small;
}