/* download-style.css */

body {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    margin: 0;
    background-color: #000;
    color: #fff;
}

.download-frame {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
    padding: 20px;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 10%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

.download-content {
    text-align: center;
}

#file-name {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #000;
}

#file-description {
    margin-bottom: 20px;
    color: #555;
}

.download-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2em;
    text-decoration: none;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.download-button:hover {
    background-color: #333;
}

.ion-icon {
    vertical-align: middle;
    color: #000;
    font-size: 3em;
}

.BottomText{
    z-index: 1;
    font-family:__Alfa_Slab_One, __Alfa_Slab_One_Fallback;
    font-weight: 400; font-size: 1.5em;
    font-style:normal;
    color: grey;

    position: absolute;
    left: 50%;
    top: 90%;
    transform: translate(-50%, 0);
    transition: transform,0.5s;
}