* {
    padding: 0px;
    margin: 0px;
}

body {
    background-image: url('https://i.pinimg.com/originals/f2/ff/82/f2ff82037fcc5a2305be0ee82d79e893.gif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: rgb(53, 126, 251);
}

::-webkit-scrollbar {
    width: 20px;
}

::-webkit-scrollbar-track {
    background: #9CD5FF;
}

::-webkit-scrollbar-thumb {
    background: #3b7597;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #3b7597;
}

html {
    scrollbar-color: #3b7597 #9CD5FF;
}

.imgs {
    border: 5px;
    border-radius: 10%;
    width: 50%;
    height: auto;
    padding: 10px;
    position: relative;
    left: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    background-color: rgb(53, 126, 251);
    text-align: center;
    font-size: 25px;
    border: 20px;
    font-style: italic;
}

.telinha {
    background-color: #fff;
    width: 100%;
    height: 100px;
    border: 5px;
    text-align: center;
    list-style-type: none;
}

.frutiger {
    font-size: 15px;
    color: #3B7597;
    padding: 15px;
    font-family: inherit;
    font-weight: 800;
    position: relative;
    cursor: pointer;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.frutiger:focus,
.frutiger:hover {
    color: #7AAACE;
}

.frutiger:focus:after,
.frutiger:hover:after {
    width: 100%;
    left: 0%;
}

.frutiger:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #9CD5FF;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;

}