body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
}

.flex-container.vertical {
    flex-direction: column;
}

#main {
    background-color: black;
    /*background: #5F2093;*/
    /*background: linear-gradient(135deg,rgba(95, 32, 147, 1) 0%, rgba(158, 49, 240, 1) 50%, rgba(242, 58, 156, 1) 100%);*/
    width: 100%;
    height: 100%;
    overflow: auto;
    color: white;
    font-family: "RedHatDisplay", helvetica, arial, sans-serif;
    padding: 0.5rem;
    box-sizing: border-box;
}

.app-title {
    margin: 4rem 1rem 3rem 1rem;
    text-align: center;
}

.app-title img {
    width: 15rem;
    height: auto;
}

.actions {
    align-items: center;
    justify-content: center;
}

.actions a {
    flex-basis: 11rem;
    margin: 0.5rem 1rem;
    background-color: #232657;
    border: none;
    padding: 1rem;
    border-radius: 2rem;
    color: white;
    text-align: center;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.actions .login {
    background-color: white;
    color: black;
}

.actions a:hover {
    filter: drop-shadow(0px 0px 8px #4444E8);
    background: linear-gradient(45deg, #ffa2a2, #afa1ff);
}

.get-apps {
    align-items: center;
}

.get-apps .title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.get-apps .downloads a img {
    width: 10rem;
}

.get-apps .downloads a:hover img {
    filter: drop-shadow(0px 0px 6px #4444E8);
}

.get-apps .downloads a {
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    cursor: pointer;
}

.get-apps .separator {
    width: 22rem;
    height: 1px;
    background-color: white;
    margin: 3rem 0;
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    font-size: 0.85rem;
}