

@media (min-width: 501px) {
  body {

    background-color : black;
}

h1 {
  font-family: 'Helvetica';
  background-color: white;
  position: fixed;
  top: 10px;
  margin-left: 25%;
  font-size: 1.35vw;
  color: black;
}

p {
  font-family: 'Helvetica';
  font-size: 0.9vw;
  position: absolute;
  top: 100px;
  color:white;
  column-count: 3;
  column-gap: 22vw;
  margin-left: 25%;
}

img {
  width: 18%;
  position:fixed;
  top: 60px;
  left: 3vw;
}}


/* SMARTPHONE MODE PORTRAIT */

@media (max-width: 500px) {

  body {

    background-color : black;
}

  p {
    font-family: 'Helvetica';
    font-size: 2vw;
    position: absolute;
    top: 80px;
    color:white;
    margin-left: 25%;
    width: 70%;
    column-count: 3;
    column-gap: 3vw;

  }

  h1 {
    font-family: 'Helvetica';
    background-color: white;
    position: fixed;
    top: 10px;
    width: 100%;
    font-size: 3vw;
    color: black;
    padding-left: 4.5%;
    left: 0px;
  }

  img {
    width: 20%;
    position:fixed;
    top: 70px;
    left: 3vw;
  }


}
   
