body{
    width: 100vw;
    height: 100vh;
    padding:0;
    margin:0;
}

 @keyframes achtergrond {
    0%   {background-color:#9ad1e2}
    25%  {background-color:#7eb6c7}
    50%  {background-color:#8ed6cd}
    75%  {background-color:#9ae2e2}
    100% {background-color:#9ad1e2}
  } 

 


* {
  margin: 0;
  padding: 0;
}

.container {
  width: 100vw;
  height: 100vh;

  font-family: Galvji, cuersive, Arial;
  font-weight: bold;
  font-size: 25px;
  text-align: center;
  letter-spacing: 2px;
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  /* Changes in JS */
    animation-name: achtergrond;
    animation-duration: 20s;
    animation-iteration-count: infinite;
}

.container-text-changing {
  margin-top: calc(100vh/5.5);
  max-width: 60%;
}

.container-svg {
  margin-top: 5vh;
}

.container-svg img{
    width:25vh;
}

.container-bottom-text {
  margin-bottom: calc(100vh/7.5);
}
