@font-face {
    font-family: Arial;
    src: url("/Universal/assets/ARIAL.TTF");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    min-height: 100vh;
    display: flex;
    background: #000000;
    color: #fff;
}

.main_body_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    flex: 1;
    padding: 20px;
    height: 100vh;
    width: 100vw;
}

.web_logo {
    /*width: 30vw;*/
    /*height: auto;*/
    max-height: 40vh;
    width: auto;
}

.download_btn {
    padding: 10px 20px;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #989898;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-direction: row;
    cursor: pointer;
}

.download_btn:hover {
    border-color: #1E90FF;
}

.dl_logo {
    width: 30px;
    height: auto;
}

.download_btn_subtext {
    font-size: 12px;
    color: #9a9a9a;
    margin-top: 5px;
}

.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 0;
}

.footer_text_copy {
    font-size: 12px;
    color: #9a9a9a;
    width: 150px;
    text-align: center;
}

.navigator {
    display: flex;
    gap: 20px;
}

.navigator_item {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.navigator_item:hover {
    color: #1E90FF;
    font-size: 18px;
}