.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 400px;
}

.download-section h2 {
    color: #444;
    font-size: 60px;
    font-weight: 800;
}

.download-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    width: 80%;
}

.download {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2%;
    padding: 0;
    text-align: center;
    text-decoration: none;
    color: #2d8fff;
    background-color: #fff;
    width: 500px;
    height: 100px;
    border: 3px solid #2d8fff;
    border-radius: 20px;
    font-size: 40px;
    font-weight: 700;
    cursor: pointer;
    transition-duration: 0.3s;
}

.download:hover {
    transform: translate(-5px, -5px);
    box-shadow: 15px 15px #0077ff;
}

.update-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 100px;
    margin-bottom: 30px;
}

.update-section h2 {
    color: #444;
    font-size: 60px;
    font-weight: 800;
}

.update-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 90%;
    min-height: 300px;
    padding: 20px;
    margin: 20px 0;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 30px;
}

.header-container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #ccc;
}

.version {
    margin: 0;
    margin-left: 1%;
    color: #444;
    font-size: 48px;
    font-weight: 600;
}

.release-date {
    margin: 0;
    margin-right: 1%;
    color: #444;
    font-size: 18px;
    font-weight: 400;
}

.update-container p {
    margin: 20px 0px 20px 2%;
    color: #444;
    font-size: 24px;
    font-weight: 600;
}

.update-content {
    margin: 0px 0px 10px 2%;
    color: #444;
    font-size: 20px;
    font-weight: 400;
    line-height: 40px;
}