.container {
    padding: 40px;
}

h1 {
    margin-top: -50px;
}

h2 {
    margin-top: 5px;
}

p {
    font-size: 1.1rem;

    margin-top: 10px;
    margin-bottom: 35px;
}

.download-button {
    background-color: var(--blue1);
    color: var(--white1);
    text-align: center;
    text-decoration: none;

    font-size: 1.2rem;

    width: 20vw;

    padding: 15px;

    font-size: 1em;

    border: none;
    outline: none;
    cursor: pointer;

    border-radius: 10px;

    transition: all 0.2s ease-in-out;
}

.download-button:hover {
    background-color: var(--blue2);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

@media (max-width: 800px) {
    h1 {
        margin-top: 0;
    }
}