@font-face {
    font-family: 'BaiJamBold';
    src: url('../fonts/BaiJamjuree-Bold.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'BaiJamSemiBold';
    src: url('../fonts/BaiJamjuree-SemiBold.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'BaiJamItalic';
    src: url('../fonts/BaiJamjuree-Italic.ttf');
    font-display: swap;
}
@font-face {
    font-family: 'BaiJamRegular';
    src: url('../fonts/BaiJamjuree-Regular.ttf');
    font-display: swap;
}

@keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}

body {
  margin:0;
  padding:0;
}

html {
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cg fill='%23f1dcb8' fill-opacity='0.4'%3E%3Cpolygon fill-rule='evenodd' points='8 4 12 6 8 8 6 12 4 8 0 6 4 4 6 0 8 4'/%3E%3C/g%3E%3C/svg%3E");
}

h1 {
  font-family:'BaiJamBold';
  font-size:2rem;
  text-align:center;
}

nav, section {
    display: flex;
    font-family:'BaiJamBold';
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-evenly;
    margin: 0 auto;
  }

  nav, .videobanner, #links {
    width:1200px;
  }
  
  nav a {
    color:#000;
    font-size:1.3rem;
    text-align: center;
    cursor: pointer;
    text-transform: uppercase;
    text-decoration: none;
    vertical-align: middle;
  }

  nav img{
    width:200px;
  }

  nav .fa-square-up-right{
    opacity:0.4;
  }

.undertale_intro{
  margin:80px 0px;
  animation: float 6s ease-in-out infinite;
  cursor:pointer;
}

.latestVideoEmbed {
  border-radius:10px;
  border:4px solid #fff;
  -webkit-box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  -moz-box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  margin-bottom:80px;
}

#links{
  margin-bottom:100px;
}

#links a {
  text-decoration:none;
  color:#000;
}

.social {
  cursor:pointer;
  background:#fff;
  width: 200px;
  height:280px;
  padding:15px;
  border-radius:10px;
  -webkit-box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  -moz-box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  box-shadow: 0px 0px 35px -7px rgba(0,0,0,0.54);
  transition: transform .2s;
}

  .social:hover{
    transform:scale(1.1);
  }

.social img{
  text-align: center;
  margin: 0 auto;
  display: flex;
}

.social h3{
  margin-bottom:5px;
}

span {
  font-family:'BaiJamRegular';
}

.bold {
  font-family:'BaiJamBold';
}

#toTop{
  display: none;
  background: #000;
  border: 0px;
  border-radius: 7px;
  width: 32px;
  height: 32px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: #fff;
  font-size: 20px;
}