@font-face {
  font-family: Shag;
  src: url(Shag-Lounge.otf);
}
body {
  
  background-color: black;
  color: black;
  font-family: Verdana;
}
header {
  background-image: linear-gradient(to right, cyan, magenta, yellow);
  padding: 10px 50px 0;
  margin: 0;
  color: white;
  font-family: Shag;
  display: flex;
  align-items: center;
  font-size: 30px;
  position: static;
  left: 0;
  top: 50;
}
.logo {
  position: relative;
  bottom: 20px;
}
.logo img {
  transition: transform 0.2s;
}
.logo img:hover {
  transform: scale(1.2);
}
.logotxt {
  position: relative;
  left: 30px;
  text-shadow: 2px 2px black, -2px 2px black, 2px -2px black, -2px -2px black;
}
.stupid{
  position: sticky;
  right: 0;
  top: 0;
  background-image: linear-gradient(to right, cyan, magenta, yellow);
  padding: 10px 50px;
  box-shadow: 0 10px 5px rgba(0, 0, 0, 0.4);
}
.navbar {
  font-family: Shag;
  font-size: 20px;
  position: relative;
  right: 0;
  top: 0;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #000000;
  display: flex;
  overflow: hidden;
  max-width: 400px;
  border: 4px solid white;
  border-radius: 20px;
}
.navbar li {
  float: left;
  display: block;
  color: white;
  text-align: center;
  padding: 6px;
  margin: 0;
  text-decoration: none;
  overflow: hidden;
  border-right: 4px solid white;
  transition: background-color 0.2s, color 0.2s;
}
.navbar li:last-child {
  border-right: none;
}
.navbar li:hover {
  color: black;
}
.navbar li:first-child:hover {
  background-color: cyan;
}
.navbar li:nth-child(2):hover {
  background-color: magenta;
}
.navbar li:last-child:hover {
  background-color: yellow
}

/*enNOOOUGH with the damn NAAAVVvbaaarrr*/

.newestbox {
  background-color: white;
  padding: 25px;
  border: 10px solid transparent;
  background:
    linear-gradient(to bottom, white 0 0) padding-box,
    linear-gradient(to bottom, cyan, magenta, yellow) border-box;
  border-radius: 20px;
}
.embed {
  float: right;
  padding-left: 40;
  padding-right: 0;
  top: 0;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.4);
}
footer {
  background-image: linear-gradient(to right, cyan, magenta, yellow);
  position: static;
  bottom: 40;
  padding: 5px;
  justify-content: center;
  display: flex;
}
::-webkit-scrollbar{ display: none; } /* sorry chat i looked it up and the ai overview gave me a correct answer oh kill me for it /j */

h3 {
  color: gray;
}

a {
  color: white;
}
.newestbox a {
  color: black;
}
























