
@font-face {
  font-family: Kelmscott; 
  src: url(/fonts/Kelmscott.ttf);
}

body {
  background-image: url("/media/custom/wallpaper.png");
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-family: Kelmscott;
}

.main {
    display: grid;
    grid-template-columns: 50px 250px repeat(2, 1fr) 50px;
    grid-template-rows: 15px 300px 1fr 350px 15px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.div1 { 
    grid-area: 2 / 3 / 4 / 5; 
    background-color: #461614;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    color: rgb(255, 255, 255);
    padding: 50px;
    outline-style: solid;
    outline-color: #1c060c;
}
.div2 { 
    grid-area: 4 / 3 / 5 / 5; 
    background-color: #461614;
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif; 
    color: rgb(255, 255, 255);
    display: grid;
    grid-template-columns: 15px repeat(3, 1fr) 15px;
    grid-template-rows: 15px repeat(3, 1fr) 15px;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    outline-style: solid;
    outline-color: #1c060c;
}
.likes{
    grid-area: 2 / 2 / 5 / 3;
}
.hobbies{
    grid-area: 2 / 3 / 5 / 4;
}
.favorite{
    grid-area: 2 / 4 / 5 / 5;
}
.div3 { 
    grid-area: 2 / 2 / 3 / 3;
    text-align: center;
    outline: 3px solid #1c060c;
}
.div4 { 
    grid-area: 3 / 2 / 4 / 3; 
    background-color: #461614;
    text-align: center;
    font-family: Kelmscott; 
    color: rgb(255, 255, 255);
    width: 200px;
    justify-self: center;
    height: 350px;
    outline-style: solid;
    outline-color: #1c060c;
} 

a:link, a:visited {
  color: white;
  margin: 15px;
  border-radius: 25px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: Kelmscott;
}

a:hover, a:active {
  background-color: #4a1721;
}