html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
    font-family: "Sergoe", sans-serif
}

.buttonAnimated {
    border: transparent 1px solid;
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.5s;
    color: #ffffff;
    background: #3f51b5;
}

.buttonAnimated:hover {
    border: #3f51b5 1px solid;
    color: #3f51b5;
    background: #ffffff;
}


.container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

div.sticky {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    text-align: center;
}

#buttonTop {
    display: none;
    position: fixed;
    bottom: 60px;
    right: 20px;
    z-index: 100;
    cursor: pointer;
}

footer {
    width: 100%;
}