/* 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." */


.home-page {
  color: black;
  font-family: monospace;
  font-size: 16px;
  text-align: center;

  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden; /* crop phone edges */
  background: black;
}

/*the phone above selection menu & relative scalling*/
/* Phone container */
.phone {
  position: relative;
  z-index: 2;
  height: 100vh;
  width: auto;        /* controls screen size */  
}


/* Phone image */
.phone img {
  width: auto;
  height: 100vh;
  display: block;
  z-index:2;
  position: relative;
  pointer-events: none;
  
  /* WebKit (Safari, Chrome) */
  -webkit-mask-image: url('images/nokia4-mask.png');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;

/* Standard syntax (Firefox) */
  mask-image: url('images/nokia4-mask.png');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  
  -webkit-mask-composite: destination-in; /* necessary for WebKit */
  mask-composite: intersect; /* for standard */
}


/* Screen area */
.menu-box {
  position: absolute;
  z-index: 1;

  top: 25.4%;
  left: 31.7%;
  width: 38%;
  height: 24%;

  border: 2px solid red;
  padding: 7px;
  box-sizing: border-box;
  background: #d7e6c4;

  overflow-y: auto;
  overflow-x: hidden;
  
  font-family: monospace;
  font-size: 14px;
}



/*the menu selection stuff*/
.hover-link {
  display:block;
  color: black;                 /* normal text color */
  text-decoration: none;        /* remove underline */
  padding: 4px 8px;             /* space for black bar */
  transition: background-color 0.2s ease, color 0.2s ease;
}

.hover-link:focus {
  background-color: black;      /* black bar */
  color: white;       /* white text */
  border-radius: 3px;
}

.hover-link:hover {
  background-color: black;      /* black bar */
  color: white;       /* white text */
  border-radius: 3px;
}

.hover-link:focus-visible {
  background-color: black;
  color: white;
  border-radius: 3px;
  outline: none;
}


.no-dots{
  list-style:none;
  padding: 0;
}




