body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #121925;
    color: #e0e6ed;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

h1 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 10px;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    color: #9db4c0;
    margin: 10px 0;
    text-align: center;
}

p {
    max-width: 1000px;
    font-size: 1.1rem;
    color: #c5d1db;
    align-self: center;
    margin-bottom: 20px;
    text-align: center;
}

img {
    border-radius: 8px;
    align-self: center;
}

.downloadLinks {
    display: flex;
    list-style: none;
    padding-top: 1%;
    align-self: center;
}

.downloadLink {
    background-color: #132839;
    color: #27416a;
    border: 2px solid #0F1B25;
    border-radius: 15px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.downloadLink:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #2c3b4e;
}