html {
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(7,113,152,1) 0%, rgba(0,212,255,1) 100%);
    color: white;
}

main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-family: "Poppins", sans-serif;
    font-size: x-large;
    grid-gap: 10px;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    main {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }
}

nav {
    font-size: initial;
    display: flex;
    gap: 2%;
}

.button {
    background-color: #ffa500; /* Orange */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    justify-content: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
}

.downloadnow {
    background-color: #ff0000; /* Orange */
    width: 90%;
}