body {
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    height:100vh;
    display:flex; 
    flex-direction:column; 
}
.top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}
.top a {
    color: inherit;
    display: block;
    text-decoration: none;
}
.left {
    max-width: 450px;
}
#mainTitle {
    display: flex;
    align-items: center;
}
#mainTitle h1 {
    font-size: 40px;
    display: inline;
}
#homeText {
    margin: 0 0 0 20px;
}

.icon {
    width: 120px;
    height: 120px;
    overflow: hidden;
    transition: transform 0.2s ease-in-out;
}

.icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.icon-ios {
    border-radius: 26.844px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#left-content {
    margin: 25px 0 0 0;
}

#left-content span {
    line-height: 1.45em;
    margin-bottom: 10px;
    display: block;
}

.downloadButtonContainer {
    display: inline-block;
    margin-top: 20px;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.1)) drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.2));
}
.downloadButtonContainer a img {
    height: 60px;
}

.right img {
    max-width: 550px;
}

.content {
    line-height: 1.45em;
    margin: 0 auto; 
    min-width: 70%;
    max-width: 70%;
}

.parsedown {
    margin: 0 auto; 
    min-width: 70%;
    max-width: 70%;
}

.parsedown h2 {
    margin-top: 50px;
}

.parsedown .release-bullet {
    font-size: 14px;
    color: white;
    border-radius: 10px; padding: 5px 10px;
}

.parsedown #release-new {
    background-color: blue;
}

.parsedown #release-fixed {
    background-color: green;
}

.parsedown #release-changed {
    background-color: #ea8f27;
}

.parsedown #release-removed {
    background-color: red;
}

.parsedown li {
    line-height: 1.45em;
}


footer {
    background-color: #ececec;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    margin-top: auto; 
}

footer .links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

footer .links a {
    color: #909090;
    text-decoration: none;
}

footer .links a:hover {
    color: red;
}

@media screen and (max-width: 1115px) {
    .top {
        display: block;
        justify-content: center;
        align-items: center;
    }
    .left {
        text-align: center;
    }
    #title {
        display: block;
        text-align: center;
    }
    #mainTitle {
        display: block;
        text-align: center;
    }
    #homeText {
        margin: 0;
    }
    #text {
        margin: 0;
    }
    .left {
        margin: 0 auto;
    }
    .right {
        text-align: center;
        padding-top: 50px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 414px) {
    .right img {
        max-width: 390px;
    }    

    footer {
        font-size: 15px;
    }
}

@media screen and (max-width: 375px) {
    .right img {
        max-width: 320px;
    }

    .content {
        margin: 20px;
    }
    
    footer {
        font-size: 12px;
    }
}

@media screen and (max-width: 320px) {
    #left-content {
        margin: 25px 20px 0 20px;
    }
    
    .right img {
        max-width: 280px;
    }
    
    footer {
        font-size: 10px;
    }
}