* {
    margin: 0;
    padding: 0;
    font-family: "Arial", sans-serif;
}

#titleSection{
    height: 70%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background-image: linear-gradient(#680425 0%, #c54068 50%, #ffffff 100%);
}

#title {
    font-family: 'Arial Black', sans-serif;
    font-size: 4em;
    color: white;
    padding: 30px 30px;
    align-self: center;
}

#titleImage {
    display: block;
    flex: 1 1 auto;
    min-height: 0;
    min-width: 0;
    width: 80%;
    height: 100%;
    max-width: 100%;
    margin-right: 10%;
    margin-left: 10%;
    object-fit: cover;
    object-position: top;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0));
}

@media (aspect-ratio < 4/3) {
    #titleImage {
        object-fit: contain;
    }
}

#downloadSection {
    height: 30%;
    text-align: center;
}

#downloadLabel, #versionLabel {
    display: block;
}

#downloadLabel {
    font-family: "Arial Black", sans-serif;
    font-size: 2em;
    padding: 30px 30px 10px 30px;
}

#versionLabel {
    font-size: 1em;
    padding: 10px 0;
}

#links {
    padding: 0 30px 30px 30px;
    display: flex;
    justify-content: center;
    gap: 2%;
}

.downloadButton {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: black;
    background-color: lightgrey;
    padding: 10px 20px 10px 10px;
    border-radius: 5px;
    width: 20%;
}

.platformLogo {
    flex: 0 1 auto;
}

.downloadButton.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.downloadButton:hover {
    background-color: #680425;
    color: white;
}

#links span {
    flex: 1 0 auto;
    text-align: center;
}
