* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100vh;
  width: 100vw;
  background-color: black;
  overflow: hidden;
}

body {
  background-image: url('assets/milo3.jpg');
  background-size: 80vw 100vh;
  background-position: center;
  background-repeat: no-repeat;
  

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

}

body::before {
  content: "";
  position: fixed; /* cover viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none; /* so clicks pass through */

   background: linear-gradient(
    to right,
    black 0%,        /* solid black at very left edge */
    black 10%,       /* less black on left side */
    transparent 20%, /* start fading to transparent */
    transparent 80%, /* keep transparent wide */
    black 90%,       /* less black on right side */
    black 100%  
  );

}

.centerpiece{
    /*transform:translateY(-30vh)*/

}

.socials {
    display:flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.favicon {
    width: 164px;
    height: 164px;
    display:block;
    cursor: pointer;
    object-fit: contain;
}


@media (max-width: 768px) { /* tablets & small laptops */
    .centerpiece img {
        max-width: 80vw;
    }

    .favicon {
      width:128px;
      height:128px;
    }
}

@media (max-width: 480px) { /* phones */
  .centerpiece img {
    max-width: 70vw;
  }

  .favicon {
      width:96px;
      height:96px;
    }
}


