/* 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." */
@font-face {
  font-family: 'octangle';
  src: url('octangle.woff2') format('woff2'),
}

@font-face {
  font-family: 'jeko';
  src: url('jeko.woff2') format('woff2'),
}

body {
  background-image: url("interwebsitebg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  color: white;
  font-family: jeko;
  text-shadow: 4px 4px #00000066;
  text-align: center;
  padding: 50px;
}

h1,h2,h3,h4,h5,h6 {
  color: white;
  font-family: octangle;
  font-weight: normal
}

.bubble {
  background: RGBA(252, 252, 252, 0);
  background: radial-gradient(circle, rgba(252, 252, 252, 0.25) 0%, rgba(255, 255, 255, 0.50) 100%);
  border: 2px solid white;
  border-radius: 20px;
  padding: 20px;
  width: 800px;
  margin: 0 auto;
  text-align: left;
}
.bubble:before {
  background: RGBA(252, 252, 252, 0);
  background: linear-gradient(180deg,rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  border-radius: 15px;
  padding: 20px;
  width: 790px;
  margin: -15px -15px;
  content: " ";
  position: absolute;
  display: flex;
}

.button {
  background: RGBA(252, 252, 252, 0);
  background: radial-gradient(circle, rgba(252, 252, 252, 0.25) 0%, rgba(255, 255, 255, 0.50) 100%);
  border: 2px solid white;
  border-radius: 20px;
  padding: 20px;
  width: 100px;
  height: 25px;
  margin: 0 auto;
  text-align: center;
  vertical-align:middle;
  color: white;
  font-family: octangle;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button:before {
  background: RGBA(252, 252, 252, 0);
  background: linear-gradient(180deg,rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 50%);
  border-radius: 15px;
  padding: 20px;
  width: 90px;
  margin: -15px -15px;
  content: " ";
  position: absolute;
  display: flex;
  align-self: flex-start;
}
.button:hover {
  font-weight: bold;
  font-size: 125%;
}  
a:link {
  text-decoration: none;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #ffffff66;
  border-radius: 15px;
}
 
::-webkit-scrollbar-thumb {
  background: #ffffff66;
  border-radius: 15px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff; 
}