/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/* STYLES */
body{
    margin: 0 auto;
    padding: 0 auto;
    background-color: #cecece;
    overflow: hidden;
}

h1, h2, h3, h4, h5{
    font-family: Roboto;
    color: #0e1e42;
}

.logo{
    width: 150px;
}

.introvideo{
    width: 50%;
}

.intro_container{
    width: 100%;
    height: 100%;
    text-align: center;
    margin-top: 05%;
}

/* RESPONSIVE */
@media screen and (max-width: 900px) {
    .introvideo{
        width: 90%;
    }
  }

