/* Start of CSS File */

/* Clear default styles */
*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  background-image: url("../img/bkimg.png");
  background-position: center; 
  background-repeat: no-repeat; 
  background-size: cover;
}
/* Took a mobile first approach
 * so the following CSS applies to
 * Mobile phones*/
.container {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome {
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  align-items: center;
  border: 3px solid green;
}
.welcome p {
  text-align: justify;
}
.navHome {
  display: flex;
  padding: 10px;
  justify-content: space-around;
  align-items: center;
  border: 3px solid red;
  list-style-type: none;
}

/* The following code is applied 
 *to screens 800px and wider */
@media screen and (min-width: 800px) {
  .welcome {
    flex-direction: row;
    width: 50%;
    margin: auto;
  }
  .welcome h1 {
    padding: 10px;
  }
}
