*{ 
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Archivo Black', sans-serif;
    font-family: 'Honk', system-ui;
    font-family: 'Oswald', sans-serif;
    font-family: 'Protest Guerrilla', sans-serif;
    color: #202022;
}
body {
    font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    background-image: url(../bilder/Nackastorbildback.jpg);
    background-size: 100vw;
}
#grid {
    display: grid;
    grid-template-columns: 15vw 85vw;
    grid-template-rows: 75px auto auto auto auto 100px;
    grid-template-areas: 
    "til til"
    "nav sec1 "
    "nav sec2 "
    "nav sec3 "
    "nav sec4 "
    "nav fot ";
    width: 100%;
    height: 100vh;
}
#img1 , #img2 , #img3 , #img4 {
    width: 100%;
    height: 100%;
    border-width: 5px;
    border-style: solid;
}
#title {
    grid-area: til;
    background-color: #00747C;
}
.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
#nav {
    grid-area: nav;
    background-color: #00BBC9;
    font-size: 20px;
    font-weight: 700;
}
ul {
    list-style-position:inside;
    margin-bottom: 20px;
}
li {
    margin-bottom: 5px;
}
#section1 {
    grid-area: sec1;
}
#section2 {
    grid-area: sec2;
}
#section3 {
    grid-area: sec3;
}
#section4 {
    grid-area: sec4;
}
a:hover {
    color: blue;
}
section {
    background-color: #cacacaaf;
    font-size: 30px;
    border-style:solid;
    border-width: 3px;
}
footer{
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    grid-area: fot;
    width: 85vw;
    background-color: #878787;
}
#footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 25px;
    font-weight: 900;
}
h1{
    font-size: 50px;
}
a {
    color: #202022;
}
#gif{
    height: 25vw;
}