
body{
    background-color: black;
    color: aliceblue;
    font-size: large;
    font-family: 'comic sans ms';
}
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: rgb(200, 0, 10);
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }
  
  li {
    float: left;
  }
  
  li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  li a:hover {
    background-color: #111;
  }
  .menu{
    grid-area: menu;
    
  }
  .content{
    grid-area: content;
  }
  .footer{
    grid-area: footer;
  }
  .container{
    text-align: center;
    grid-template-areas:
    'menu menu menu menu menu menu menu menu'
    'content content content content content content content content'
    'footer footer footer footer footer footer footer footer';
  }
  .logo{
    width: 50px;
    height: 50px;
  }
  p{
    font-size: large;
    text-align: left;
    margin-left: 50px;
    margin-right: 50px;
    text-wrap: wrap;
  }
.menu > .frog{
    align-self: center;
    justify-self: center;
    margin: auto;
}
.image{
  height: 300px;
  width: auto;
}
table{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin: auto
}



@media screen and (max-width: 1199px) {
  body {
    color: rgb(248, 251, 255);
    font-size: small;
    font-family: 'comic sans ms';
  }
  .image{
    height: 150px;
    width: auto;
  }
  }

  @media screen and (max-width: 599px) {
    body {
      color: rgb(255, 255, 255);
      font-size: smaller;
      font-family: 'comic sans ms';
    }
    .image{
      height: 50px;
      width: auto;
    }
    }



