
* {
    font-family: "Roboto", serif;
}

h1 {
    color: rgb(252, 227, 247);
    font-size: 48px;
    cursor: default;
    user-select: none;
    text-align: center;
}

h2 {
    color: rgb(252, 227, 247);
    font-size: 24px;
    font-style: italic;
    cursor: default;
    user-select: none;

}

.container {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
}
  
.center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 2;
}

.banner {
    z-index: 3;
    width: 100%;

}
/* https://codepen.io/malavigne/pen/gMQGJd arrow code, adjusted */
#more-arrows {
    position: absolute;
    top: 95%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
	width: 75px;
  height: 65px;
  
  &:hover {
    
    polygon {
      fill: #FFF;
      transition: all .2s ease-out;

      &.arrow-bottom {
        transform: translateY(-9px);
      }

      &.arrow-middle {
        transform: translateY(9px);
      }
      
    }
  
  }
  
}

polygon {
  fill: #FFF;
  transition: all .2s ease-out;
    
  &.arrow-middle {
	  opacity: 0.75;
	}

	&.arrow-top {
	  opacity: 0.5
	}
	 
}

body {
    background-image: url("images/webbackground1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-x: center;
}


table {
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 16px;
    color: rgba(236, 208, 252, 0.5);
    display: grid;  
}

.banner td {
    width: 33.33%;
}

.banner td a {
    color: rgba(236, 208, 252, 0.5);
}

.banner td a:hover {
    color: rgb(133, 214, 255);
}

hr {
    height: 2px;
    border: 0;
    background-color: rgba(255, 255, 255, 0.25);
    margin-top: 0px;
    
}
/* google fonts code */
.roboto-thin {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: normal;
  }
  
.roboto-light {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .roboto-regular {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .roboto-medium {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .roboto-bold {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .roboto-black {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .roboto-thin-italic {
    font-family: "Roboto", serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .roboto-light-italic {
    font-family: "Roboto", serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .roboto-regular-italic {
    font-family: "Roboto", serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .roboto-medium-italic {
    font-family: "Roboto", serif;
    font-weight: 500;
    font-style: italic;
  }
  
  .roboto-bold-italic {
    font-family: "Roboto", serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .roboto-black-italic {
    font-family: "Roboto", serif;
    font-weight: 900;
    font-style: italic;
  }
  