@font-face {
  font-family: 'Aidan';
  src: url('Avfont-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}


@font-face {
  font-family: 'Numbers';
  src: url('LearnWriteDEMO.ttf') format('truetype');
  unicode-range: U+30-39,U+00A9;
  size-adjust: 80%;
}

body {
    background-image: url("img/AVBackground.jpg");
    background-color: #A6B5BC;
    background-size:100% 100%;
    background-attachment: fixed;
    margin: 0;
    font-family: "Aidan", "Numbers";
}

.sketchbook {
  background-image: url("img/sketchbook2.png");
  background-size: contain;
  background-repeat: no-repeat;
  max-width: 90vw;
  aspect-ratio: 3.5 / 2;
  margin: 0 auto;
  padding: 10px;
  position: relative; /*stacking context for absolute elements */
}

.art {
  position: absolute;
  color: black;
  font-size: 3em;
  width: 78%;
  aspect-ratio: 3.5 / 2;
  left: 19%;
  top: 21.6%;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  justify-content:center;
}

  .phonenavigation {
    position: fixed;
    width: 89%;
    /* top: 8%; */
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0);
    display: none;
  }

#copyright {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-50%, -50%);
}

.hiding {
  display:inline-block;
}

#copyright2 {
  display: none;
}

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

.hiding {
  display: none;
}

#copyright {
  display: none;
}

#copyright2 {
  position: absolute;
  color: white;
  mix-blend-mode: difference;
  bottom: 0;
  left: 0;
  font-size: 10px;
  z-index: 3;
}

body {
  background-image: url("img/sketchbook-phone.png");
}

.art {
  display: none;
}

.sketchbook {
  position: absolute;
  font-size: 2em;
  margin: 0;
  padding: 0;
  overflow: scroll;
  background-image: none;
  width: 90%;
  height: 75vh;
  /* top: 16%; */
  top: 145px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: -1;
}


.phonenavigation {
    display: initial;
}

.phonelinks #myLinks {
    display: none;
    background-color: #F3F3F7;
    border: 1px solid black;
}
  

.phonelinks a {
    color: black;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 40px;
    display: block;
}
  

.phonelinks a.icon {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
}


}
  
  table {
    margin: auto;
    width: 100v;
    table-layout: fixed;
    border-collapse: collapse;
  }
  
  td {
    width: 33.33%;
  }

img {
    display: block;
}
  
  /* take care of portrait orientation or ratio */
  
  html {
    height: 100%;
    width: 100%;
  }
  
  table {
    max-width: 100vw;
  }

  a {
    color: black;
    text-decoration:solid;
    /* text-shadow: -1px -1px 0 black, 0 -1px 0 black, 1px -1px 0 black, 1px 0 0 black, 1px 1px 0 black, 0 1px 0 black, -1px 1px 0 black, -1px 0 0 black; */
  }