body {
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    justify-content: center;
    position: absolute;
    z-index: 50;
    width: 100%;
}

#banner {
    display: flex;
    width: 100%;
    margin: 5px;
    /* height: 35px; */
}

#logo {
    /* background-color: white; */
    padding: 1rem;
    width: 30rem;
    height: 10rem;
    margin-left: 20px;
}

#fondo {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#btn-encuesto {
    background-color: #B1242A;
}

#btn-encuesto:hover {
    background-color: #e2111c;
}

.content_info_btn {
    margin-bottom: 10rem;
}

.container_info {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    /* background-color: rgba(14, 13, 13, 0.89); */
    background-color: rgba(0, 0, 0, 0.897);
    color: white;
}

.content_info_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    border-radius: 5px;
    padding: 3rem 10rem;
}

.container_info h1 {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: 800;
    margin: 0px;
}

.content_info_text span {
    font-size: 2rem;
    font-weight: 500;
}

.container_info a {
    font-weight: 800;
    text-decoration: none;
    color: white;
    font-size: 20px;
    background-color: #B1242A;
    box-shadow: 2px 0px 3px black;
    transition-duration: 200ms;
    padding: 10px;
    margin-top: 10px;
    margin-right: 20px;
    border-radius: 5px;
}

.container_info a:hover {
    background-color: #e2111c;
}

@media all and (max-width: 767px) {
   .content_info_text {
       padding: 1rem 3rem;
   }

   #logo {
       width: 15rem;
       height: 10rem;
       margin: 0px;
   }

}

@media all and (max-width: 737px) {
    .content_info_text {
        padding: 1rem 3rem;
    }

    #logo {
        width: 15rem;
        height: 10rem;
        margin-top: 90px;
    }

 }
