@import url("https://fonts.googleapis.com/css?family=Raleway:300,500&display=swap");
@import url("https://fonts.googleapis.com/css?family=Playfair+Display&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #534551;
  font-family: "Raleway", sans-serif;
  zoom: 75%;
}

h1, h2 {
  color: #4e4b43;
}

h1 {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.5rem;
  letter-spacing: 4px;
}

h2 {
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 2px;
}

.large-font {
  font-size: 2.5rem;
}

.gold-gradient {
  background: -webkit-linear-gradient(#f5d0a9, #c58568);
  -webkit-background-clip: text;
  color: transparent;
}

.accent-font {
  font-family: "Playfair Display", serif;
}

.one h2 {
  margin-bottom: 40px;
}

.one h1:nth-of-type(2) {
  margin-top: 10px;
}

.two {
  line-height: 30px;
  padding: 20px 0;
}

.one {
  padding-bottom: 25px;
}

.two, .three, .four, .five {
  padding: 25px 0;
}

.date {
  display: block;
  width: 100px;
  margin: 10px auto;
  grid-template-areas: "year-one day year-two";
}
.year-one{
  display: flex;
  justify-content: space-evenly;
}
.date h2 {  
  color: #c58568;
  font-weight: bold;
}
.date .day{
  margin-bottom: 10px;
}
.date .day h2 {
  font-size: 2.5rem;
  line-height: 2.5rem;
}

.four h1:nth-of-type(1), .four h1:nth-of-type(2) {
  color: #c58568;
  font-weight: bold;
}

.four h1:nth-of-type(2) {
  margin-bottom: 20px;
}
.four h2 {
  margin: 5px auto;
}

.five h1 {
  margin-top: 15px;
  font-size: 1rem;
}


/* LAYOUT */
.container {
  box-sizing: border-box;
  width: 850px;
  height: 1200px;
  margin: 20px auto;
  background-image: url("bg.png"), url("bgt.jpg");
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.3);
}

.contents {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 0.2fr 0.5fr 1fr;
  grid-template-areas: "one one" "two two" "three four" "five five";
  padding-top: 300px;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

.one {
  grid-area: one;
}

.two {
  grid-area: two;
  border-top: 2px solid #cccac4;
}

.three {
  grid-area: three;
  border-top: 2px solid #cccac4;
  border-bottom: 2px solid #cccac4;
}

.four {
  grid-area: four;
  border-top: 2px solid #cccac4;
  border-left: 2px solid #cccac4;
  border-bottom: 2px solid #cccac4;
}

.five {
  grid-area: five;
}
