.video {
    display: none; /* Hide all elements by default */
}
.show {
    display: block;
}
/* Style the buttons */
.btn {
    border: none;
    outline: none;
    background-color: white;
    cursor: pointer;
    margin-left: 20px;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 16px;
    color: black;
}
.btn:first-child {
    margin-left: 0px;
}
.btn:hover {
    border-bottom: 2px solid gray;
}
.btn.underline {
    border-bottom: 2px solid black;
}
.myBtnContainerMobileWrapper {
    display: none;
}
    
@media (max-width: 930px) {
#myBtnContainer {
    display: none;
}
.myBtnContainerMobileWrapper {
    display: block;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 26px;
}
#myBtnContainerMobile {
    width: 100%;
    padding: 15px;
    background-color: #eee;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}
.myBtnContainerMobileWrapper > span {  
    position: absolute;
    left: 90%;
    top: 70%;
    transform: translate(-50%,-50%);
    font-size: 40px;
    pointer-events: none;
}