@font-face {
  font-family: Omori1;
  src: url("OMORI_GAME.ttf");
}
@font-face {
  font-family: Omori2;
  src: url("OMORI_GAME2.ttf");
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  font-family: 'Omori2'
}

body {
  background: linear-gradient(
  to bottom,
  #FF58B1,
  #FF58B1 50%,
  #DA408A 50%,
  #DA408A
);
background-size: 100% 60px;
}

.grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 130px 300px 1fr;
  margin: 0 20%;
}

.grid_object {
  background-color: white;
  width: auto;
  height: auto;
  display: flex;
}

.object_1 {
  flex-direction: column;
  grid-row: 2;
  grid-column: 1;
  background-color: transparent;
  color: white;
}

.object_1 h2 {
  font-size: 50px;
  
}

.links {
  font-size: 30px;
  padding: 10 20px;
}

.object_2 {
  grid-row: 1;
  grid-column: 1 / span all;
  margin-top: 20px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  letter-spacing: 4px;
  background-color: transparent;
  color: white;
}

.object_3 {
  flex-direction: column;
  grid-column: 2 / span 2;
  padding: 20px;
  font-size: 24px;
  overflow: auto;
}

.paragraphHeader {
  font-size: 28px;
  padding-bottom: 8px;
}

















