.options {
    display: flex;
    justify-content: space-between;
    padding: 0 10px 0;
    width: 90%;
    margin: 0 auto auto;
}

.welcome{
    width: 90%;
    height: 100%;
    font-size: 18px;
    align-self: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px 10px 0 0;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 15px 0;
    margin: 10px auto auto;
    transition: all 0.3s;
}

.welcome:hover{
    transition: all 0.3s;
    background-color: rgba(230, 230, 230, 0.5);
}
.options .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% / 2);
    height: 10vw;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s;
}
.options .btn:hover {
    background-color: rgba(230, 230, 230, 0.6);
    transition: all 0.3s;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

.options .btn span {
    font-size: 2vw;
}

.options .btn img {
    width: 7vw;
    height: 7vw;
    object-fit: cover;
}

.options .btn span {
    margin-left: 10px;
}

.btn1{
    border-radius: 0 0 0 10px;
}

.btn3{
    border-radius: 0 0 10px 0;
}

.updates,.version{
    width: 85%;
    height: 100%;
    font-size: 18px;
    align-self: center;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    padding: 20px;
    margin: auto auto;
}

@media screen and (max-width: 768px) {
    .options .btn {
        height: 20vw;
        width: 100%;
    }
    .options .btn span {
        font-size: 4vw;
    }
    .options .btn img {
        width: 14vw;
        height: 14vw;
    }
    .options{
        flex-direction: column;
        justify-content: inherit;
        height: 100%;
    }
    .btn1{
        border-radius: 0;
    }
    .btn3{
        border-radius: 0 0 10px 10px;
    }
    .updates{
        text-align: left;
    }
}