/* imports */

@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');

/* animations */

@keyframes example {
  0%   {color:white;}
  50%  {color:rgb(160, 186, 236);}
  100% {color:white;}
}

/* text */

h1 {
  font-weight: 400;
  font-style: italic;
  text-shadow: 2px 2px rgba(100, 149, 237, 1);
  margin-bottom: 0px;
}

h2 {
  font-size: 42px;
  color: white;
  margin: 16px;
}

p {
  font-style: italic;
  font-weight: 200;
  color: rgb(255, 238, 140);
  margin-top: 2px;
}

/* containers */ 

body {
  height: 100vh;
  width: 100vw;
  background: #6495ED;
  background: linear-gradient(0deg,rgba(100, 149, 237, 1) 0%, rgba(0, 49, 83, 1) 100%);
  color: white;
  font-family: "Source Serif 4", serif;
}

.container {
    width: 76%;
    height: 100%;
    margin: 4% 12%;
}

.contained-content {
  border: 2mm ridge rgb(255, 238, 140);
  height: 60vh;
  display:flex;
  align-items: center;
  /*background rgb(255, 238, 140);*/
}