*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* h1{
    font-size: 3rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-inline: 1.5em;
    padding: 1em;
    text-align: center;
    font-weight: bolder;
    padding: auto;
}
ul{
    list-style-type: none;
    text-align: center;
    padding: 2rem;
    width: 100%;
    background-color: black;
}
li{
    margin: auto;
    color: aliceblue;
    display: inline-block;
    margin-inline: 4rem;
}
a{
    color: aliceblue;
    display: inline-block;
    font-size: 1.5rem;
    text-decoration: none;
}
a:hover , a:focus{
    text-decoration: underline;
    color: rgba(240, 248, 255, 0.827)
} */
 body{
    font-size: 1.5rem;
    background-image: linear-gradient(rgb(7, 203, 7),pink,white);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
 }
 header{
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    text-align: center;
    align-items: center;
    padding: 1rem;
    background-color: black;
    font-family: "Pinyon Script" , cursive;
    color: white;
    border: 4px solid black;
    align-self: center;

 }
 nav{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    background-color: whitesmoke;
    color: black;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 520;
    font-family: 'Inter', sans-serif;
 }
 nav a{
    color: black;
    text-decoration: none;
 }
 a:hover,a:focus{
    color: rgba(0, 0, 0, 0.353);
 }
 figure img{
    display: grid;
    grid-template-columns: 100%;
    width: 100%;
    height: auto;
 }
 figcaption{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.7rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
 }
 section h1{
    font-size: 2rem;
    color: whitesmoke;
    padding: 1rem;
    text-align: center;
    background-color: black;
 }
 section p{
    padding: 1rem;
    font-size: 1.7rem;
 }
.dlist{
    border: 5px double black;
    margin: 1.7rem;
    padding: 3rem;
    word-spacing: 0.2em;
    font-family: 'Courier New', Courier, monospace;
    font-weight: 520;
 }
 div p{
   font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
   text-align: center;

 }
 footer{
   display: grid;

   text-align: center;
   color: black;
   padding: 1rem;
   font-size: 1.3rem;
   font-weight: 520;
   font-family: 'Inter', sans-serif;
 }
/* footer a:visited {
   color: brown;
 } */
 footer a{
   text-decoration: none;
   color: rgba(0, 0, 0, 0.596);
   font-weight: 520;
   font-size: 1.3rem;
   font-family:  'Inter', sans-serif;
 }

 footer a:hover,footer a:focus {
   color: rgba(0, 0, 0, 0.353);
 }
 foot{
   background-color: black;
   color: whitesmoke;
   text-align: center;
   padding: 1rem;
 }
 @media screen and (orientation: landscape)
 {
    body{
        font-size: 1.5rem;
    }
    header{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 2rem;

    }
    nav{
        font-size: 1.3rem;
    }
    section h1{
        font-size: 2rem;
    }
    section p{
        font-size: 1.7rem;
    }
    footer{
        font-size: 1.3rem;
    }
   
 }
  @media screen and (min-width: 600px) and (max-width: 1024px)
 {
    body{
        font-size: 1.5rem;
    }
    header{
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

    }
    /* nav{
        font-size: 1.3rem;
    }
    section h1{
        font-size: 2rem;
    }
    section p{
        font-size: 1.7rem;
    }
    footer{
        font-size: 1.3rem;
    } */
   
 }

 