* {
    margin: 0;
    box-sizing: border-box;

  }
  html{
    height: 100%;
    background-color: #2c3e50;
  }
  body {
    font-family: sans-serif;

    min-height: 100%;
    width: 100%;
  }

  .gridContainer > * {

    box-shadow: -1px 1px 7px 0px rgba(0, 0, 0, 0.75);
    border-radius: 4px;
    align-content: center;

  }

  .gridContainer {
    display: grid;
    gap: 10px;
    padding-top: 5px;
    grid-template-rows: 270px auto;
    grid-template-areas:
        "sidebar"
         "main";


  }

  .sidebar {
    grid-area: sidebar;
    text-align: center;
    padding-top: 40px;

  }

  .sidebar img {
    width: 250px;
  }
  
  .main {
    grid-area: main;
    text-align: center;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .footer {
    grid-area: footer;
    background-color: black;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    color: white;
    clear: both;
    display: flex;
    justify-content: space-evenly;
  }
  .fa-facebook-messenger{
    font-size:xx-large;
    font-weight: bolder;
    color: white;
    padding-top: 10px;
  }
  
  .fa-facebook-messenger:before{
    color: darkgrey
  }


  @media (min-width: 425px) {
    .gridContainer {
        grid-template-rows: 430px auto;
        grid-template-areas:
            "sidebar"
             "main";
    
    
      }
    
    .sidebar img {
        width: 400px;
    }   
    .sidebar {
        padding-top: 70px;
    }  




}