html {
    margin: 0; 
    height: 100%; 
    overflow: hidden; 
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}
iframe { 
    position: absolute; 
    top: 0; right: 0; bottom: 0; left: 0; border: 0;
    overscroll-behavior: none;
    overscroll-behavior-y: none;
}

p {
    color: #404F5E;
    font-family: "Nunito Sans", "Helvetica Neue", sans-serif;
    font-size:20px;
    margin: 0;
}

.long-footer {
    border-top: solid 0.5px black;
    width: 100%;
    height: 50px;
    background-color: white; 
    position: fixed;
    bottom: 0px;
    right: 0px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-footer {
    width: 200px;
    height: 40px;
    background-color: white; 
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: end;
}

@media screen and (max-width: 560px) {
    .icon-footer {
        display: none;
    }
}


@media screen and (min-width: 590px) {
    .long-footer {
        display: none;
    }
}