*{ 
    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;
    overflow-x: hidden;
}
#grid {
    display: grid;
    grid-template-columns: 15vw 60vw 25vw;
    grid-template-rows: 75px auto auto auto 100px;
    grid-template-areas:
    "til til til"
    "nav sec1 img1"
    "nav sec2 img2"
    "nav sec3 img3"
    "nav fot fot";
    width: 100%;
    height: 100vh;
}
#img1 , #img2 , #img3 {
    width: 100%;
    height: 100%;
    border-width: 5px;
    border-style: solid;
    background-color: rgb(255, 255, 255);
}
#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;
    background-color: #cacacaaf;
}
#section2 {
    grid-area: sec2;
    background-color: #cacacaaf;
}
#section3 {
    grid-area: sec3;
    background-color: #cacacaaf;
}
a:hover {
    color: blue;
}
section {
    font-size: 20px;
    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;
}