/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
  font-family: "Determination";
  src: url(font/Determination.ttf) format("truetype");
}

@font-face {
  font-family: "comicsans";
  src: url(font/comicsans.ttf) format("truetype");
}


body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  
h1 {
  font-size: 6em;
  font-family: "Determination";
  font-weight: bold;
  -webkit-text-stroke: 0.01em black;
}

h2 {
  font-size: 6em;
  font-family: "Determination";
  font-weight: bold;
  -webkit-text-stroke: 0.01em black;
}
h1,
h2 {
  margin: 0;
  color: #fff;
}
p {
  font-family: "comicsans";
  text-shadow: 0.1em 0.1em 0 black;
  font-size: 2em;
  max-width: 40%;
  text-align: center;
  color: #fff;
  -webkit-text-stroke: 0.03em black;
 
}

<style>

  img {
   max-width:100%; 
  }
  
  .screens {
   text-align: center;
  }

  @media only screen and (min-width: 641px) {

   .screens img {
    width: 191px;
    margin-right: 2px;
   }

  }

  @media only screen and (max-width: 640px) {

    .screenbox img {
      display:block;
      margin: 10px 0;
    }
    
  }

</style>







