html, body {
  margin: 0;
  padding: 0;
}

.bg-img img {
    width: 88%;
    height: 100%;
}

.bg-img {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-image: url(../img/Fondo.jpg);
    display: flex;
    justify-content: center;
    align-items: center;
}

.btns-container {
    width: 650px;
    background-color: rgb(16 152 146 / 86%);
    border-radius: 20px;
}

.inner-btns-container {
    margin: 30px 20px 25px 20px;
    display: flex;
    justify-content: center;
}

.logo-img {
    width: 90% !important;
}

.button {
    background-color: transparent;
    border-color: transparent;
    transition-duration: 0.4s;
    padding: 0px;
    border: 0px;
    margin: 5px;
}

.button:hover {
    background-color: white;
    opacity: 0.97;
    border-radius: 5px;
}

.button img{
    border-radius: 8px;
}

/* On screens that are 700px or less */
@media screen and (max-width: 680px) {
    .btns-container {
        display: flex;
        align-items: center;
        width: 100%;
        height: 100%;
        border-radius: 0px;
    }
}
