.options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    width: 90%;
    margin: auto;
}

.options .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px 15px;
    background-color: rgba(255, 255, 255, 0.8);
    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 {
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
.btntop{
    border-radius: 10px 10px 0 0;
}

.btnbuttom{
    border-radius: 0 0 10px 10px;
}
.btnonly{
    border-radius: 10px;
}
.options .btn span {
    font-size: 16px;
    overflow: hidden;
}
.options .btn img {
    width: 20px;
    height: 20px;
}
