*{
  box-sizing: border-box;
}
body{
  background: #1b2f55 url(./img/logo.png) no-repeat center 10% /80%;
  padding: 55vw 0 0;
  animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
     font-family: 'Noto Sans', sans-serif;
}
.link{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vw;
}
.link a{
  width: 17vw;
}
img{
  max-width: 100%;
  height: auto;
}
.copy{
  /*position: absolute;*/
  text-align: center;
  color: #f5f7db;
  font-size: 1rem;
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
@media screen and (max-width: 768px) {
  .copy{
    margin-top: 20vw;
  }
}
@media screen and (min-width: 769px) {
  a:hover{
    opacity: .6;
    transition: .5s;
  }
  body{
    background: #1b2f55 url(./img/logo.png) no-repeat center 20% / 460px;
    overflow: hidden;
    padding: 0% 0 0 0;
    height: 100vh;
    width: 100vw;
  }
  .link{
    flex-direction: row;
    width: 500px;
    height: inherit;
    margin: 0 auto;
  }
  .link a{
    width: 60px;
    transition: .5s;
  }
  .copy{
    position: absolute;
    width: 100%;
    bottom: 10px;
  }
}