@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jacquard+12&display=swap');

.dotgothic16-regular {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jacquard-12-regular {
  font-family: "Jacquard 12", system-ui;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #6A8C7E;
  color: #D5BBC9;
  display: flex;
  justify-content: center; 
}


a:link, a:active, a:visited, a:hover {
color: #D5BBC9;
background-color: transparent;
text-decoration: none;
}

.container {
  display: grid;
  width: 1000px;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1 fr);
  grid-gap: 5px;
  row-gap: 10px;
  column-gap: 10px;
  font-family: 'DotGothic16';
  font-size: 18px;
  line-height: 1.5;
}

.header {
  grid-area: header;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}

.sidebar {
  grid-area: sidebar;
  grid-row: 2 / 3;
  grid-column: 3 / 4;
}

.content-2 {
  grid-area: content-1;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}

.content-1 {
  grid-area: content-2;
  grid-row: 3 / 4;
  grid-column: 2 / 3;
}

.links {
  grid-area: links;
  grid-row: 2 / 3;
  grid-column: 1 / 2;
}

.footer {
  grid-area: footer;
  grid-row: 4 / 5;
  grid-column: 1 / 4;
}
                       
.header {
 text-align: center;
 margin-top:35px;
 width: 500px;
}

.h1{
color: #ebcda6;
}

.shadow{
font-family: 'jacquard 12';
text-shadow: 5px 5px #3b3b3970;
}

ul{
 list-style-type: none;
}

.links {
 link-color: #D5BBC9;
 text-align: left;
 line-height: 3.0;
}

.content-1,
.content-2 {
 text-align: justify;
}

.sidebar {
 text-align: justify;
 margin-left: 30px;
 width: 250px;
}

.right {
 color: #B70465;
 background-color: #D5BBC9;
 list-style-type: none;
 padding: 15px;
 border: 1px #B70465;
 border-style: solid none none solid;
 outline: solid #D5BBC9;
}

.footer {
text-align: center;
padding: 15px;
}

.center {
 display:block;
 margin-left: auto;
 margin-right: auto;
}

.big {
 width: 500px;
 height: 500 px;
}
