body>* {
    margin: 0px;
    background-color: #1E1E23;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    height: 100vh;
    margin: 0px;
    background-color: #1E1E23;
}

#container {
    height: 100vh;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.logo {
    text-align: center;
    margin: 20px;
    display: flex;
    flex-direction: column;
}

hr {
    width: 425px;
}

.tagline {
    font-size: 22px;
    margin-left: 15px;
    margin-top: 8px;
}

main {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.buttoncontainer {
    display: inline-flex;
    margin: 25px;
}

button {
    color: white;
    display: inline-flex;
    border: none;
    border-radius: 8px;
    padding: 25px;
    font-size: 18px;
    height: 63px;
    width: 175px;
    margin: 10px;
    justify-content: center;
}

img {
    max-width: 100%;
}

button.download {
    background: #C540E3;
}

button.installing {
    background: #D64777;
}

button.faq {
    background: #E35F40;
}

button:hover {
    cursor: pointer;
}

button span {
    margin: -4px 5px;
    background: transparent;
}

button.installing .label {
    font-size: 15px;
}

details .fas {
    font-size: 18px;
    margin-right: 5px;
}

.description {
    max-width: 375px;
    margin: 5px 0px 20px 0px;
}

.info td {
    padding: 0px 5px;
}

.qa {
    margin: 30px;
}

.qa p {
    margin: 5px;
}

.info {
    margin: 5px;
}

ul {
    list-style: none;
    /* Remove list bullets */
    padding: 0;
    margin: 0;
}

ul {
    padding-left: 8px;
}

ul:before {
    content: "◼";
    /* Insert content that looks like bullets */
    padding-right: 4px;
    color: white;
    /* Or a color you prefer */
}

iframe {
    margin: 0px;
    border: none;
    background-color: white;
    color: black;
}

.contentcontainer>* {
    display: none;
}

#displayContent {
    position: absolute;
    max-width: 550px;
    margin-bottom: 50px;
    margin-left: 7px;
    margin-right: 7px;
}

#displayContentContainer {
    display: flex;
    justify-content: center;
}

.downloadbuttons {
    justify-content: space-evenly;
    text-align: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.downloadbuttons .downloadbutton {
    width: 90px;
    cursor: pointer;
    align-items: center;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    padding: 15px 20px;
    border-radius: 5px;
    margin: 10px;
}

.downloadbuttons .downloadbutton>i {
    font-size: 42px;
    margin: 15px;
}

.downloadbuttons .downloadbutton>span {
    font-size: 14px;
}

.dependencybuttons {
    max-width: 100vw;
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

select.dependencyselector {
    background-color: #1E1E23;
    color: white;
    padding: 10px;
}

.dependencybuttons .dependencybutton {
    cursor: pointer;
    align-items: center;
    width: 50px;
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    padding: 10px 15px;
    border-radius: 5px;
    margin: 10px;
    justify-content: space-evenly;
}

.dependencybuttons .dependencybutton>i {
    font-size: 24px;
    margin: 5px;
}

.dependencybuttons .dependencybutton>span {
    font-size: 12px;
}

@media screen and (max-width: 450px) {
    hr {
        width: 95vw;
    }
    button {
        justify-content: center;
        width: 90vw;
        margin-top: 10px;
    }
    details {
        width: unset;
        margin-right: unset;
        width: 90vw;
        margin-top: 10px;
    }
    .buttoncontainer {
        display: flex;
        flex-direction: column-reverse;
    }
    p {
        max-width: 90vw;
    }
    details>div {
        max-width: 95vw;
        position: unset;
        margin-left: unset;
    }
}