@import "default.css";
.slide-control {
    padding: 8px;
    border: 2px solid;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s ease-out;
}
.glass-button {
    display: inline-block;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    color: rgba(0, 128, 0, 0.8);
}
.glass-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.growing-button:hover {
    transform: scale(1.05);
}
.fixed-top {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
}
.fixed-bottom {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
}

@media screen and (orientation: portrait) {
    .asciicast {
        width: 80%;
    }
    .slide-control {
        font-size: 5vw;
    }
}

@media screen and (orientation: landscape) {
    .asciicast {
        width: 45%;
    }
    .slide-control {
        font-size: 1.5vw;
    }
}
