/* GENERAL STYLE FOR FINDUS */

#findus_center {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    min-height: 600px;
    margin-top: 60px;
    margin-bottom: 5%;
    margin-right: 5%;
    margin-left: 5%;
}

/* TEXT SECTION */

#findus_text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    max-height: 70vh;
    min-height: 700px;
    margin-top: -10vh;
}

#findus_text img {
    height: 60px;
    padding: 10px 20px;
}

/* Styling of the main floating text */

#findus_main_text {
    font-family: 'Oswald', sans-serif;
    margin-left: auto;
    margin-right: auto;
    width: 250px;
}

#findus_main_text h1 {
    font-size: 45px;
    font-weight: 500;
    animation: floating 10s infinite;
}

#findus_main_text p,
#findus_main_text a {
    color: black;
    font-size: 18px;
    animation: floating 8s infinite;
}

/* Styling of the transport section */

#findus_transport_text {
    display: flex;
    flex-direction: column;
}

#findus_transport_text div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#findus_transport_text p {
    max-width: 400px;
    text-align: justify;
}

/* Styling of the buttons section */

#findus_buttons_text {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

#findus_buttons_text a {
    padding: 15px 20px;
    background: rgba(97, 145, 238, 0.8);
    color: white;
    border-radius: 25px;
}

/* STYLING OF THE IFRAME */

#iframe_div {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0px 0px 30px 0px grey;
    min-width: 40%;
    min-height: 35vh;
    max-height: 70vh;
    margin-left: 30px;
}

#iframe_div iframe {
    width: 100%;
    height: 100%;
    border: none;
}