@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

html {
  height: 100vh;
}
body {
  height: auto;
  background: rgb(243,40,55);
  /* background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(243,40,55,1) 100%); */
  font-family: Lato,Helvetica,Arial,sans-serif;
}

img.logo {
  position: absolute;
  top: 30px;
  right: 30px;
  max-width: 90px;
}

.v-center {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  height: 100vh;
}
.v-center .h-center {
  text-align: center;
}

.player-links {
  margin-top: 1.5em;
  font-size: 1.2em;
}
.player-links p {
  margin-top: 1.5em;
}
.player-links a {
  color: rgb(0,0,115);
  text-decoration: none;
}
.player-links a:hover {
  color: rgb(130,0,104);
}
.grow { transition: all .2s ease-in-out; }
.grow:hover { transform: scale(1.1); }

.video_container {
  max-width: 80%;
  margin: 0 auto;
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.7);
  -moz-box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.7);
  box-shadow: 0px 0px 10px 1px rgba(0,0,0,0.7);
}
