@import url("https://fonts.googleapis.com/css2?family=Raleway&display=swap");

body {
  background-color: lightblue;
  font-family: Raleway;
  text-align: center;
}
a {
  color: black;
  text-decoration: none;
  padding: 10px;
  border: solid 2px;
  border-radius: 25px;
  transition: 0.5s;
}
.buttons a:hover {
  color: white;
  background-color: black;
  border: solid 2px black;
  border-radius: 0px;
}

header {
  background-color: #f1f1f1;
  text-align: center;
  padding: 2px;
  border-radius: 15px;
}

/* The navbar container */
.topnav {
  margin-top: 3px;
  overflow: hidden;
  background-color: #f1f1f1;
  border-radius: 15px;
  padding: 10px;
}

/* Navbar links */
.topnav a {
  color: black;
  text-decoration: none;
  padding: 10px;
  margin-left: 3px;
  border: solid 2px;
  border-radius: 25px;
  transition: 0.5s;
  float: left;
  display: block;
  text-align: center;
}
.right a {
  float: right;
}
.topnav a:hover {
  color: white;
  background-color: black;
  border: solid 2px black;
  border-radius: 15px;
}

footer {
  text-align: center;
  padding: 15px;
  border-radius: 15px;
}
.footer a {
  text-decoration: none;
  padding: 5px;
  border-radius: 0px;
}

.youtube a:hover {
  color: white;
  background-color: red;
  border: solid 2px red;
  border-radius: 0px;
}
.twitch a:hover {
  color: white;
  background-color: purple;
  border: solid 2px purple;
  border-radius: 0px;
}
.twitter a:hover {
  color: white;
  background-color: #2f6dff;
  border: solid 2px #2f6dff;
  border-radius: 0px;
}
.instagram a:hover {
  color: black;
  background-image: linear-gradient(90deg, #feda75  20%, #962fbf  40%, #d62976 60%, #fa7e1e 80%, #4f5bd5 100%);
  border: solid 2px black;
  border-radius: 0px;
}
.discord a:hover {
  color: white;
  background-color: #5157cf;
  border: solid 2px #5157cf;
  border-radius: 0px;
}
.tiktok a:hover {
  color: pink;
  background-color: black;
  border: solid 2px blue;
  border-radius: 0px;
}
.spotify a:hover {
  color: white;
  background-color: green;
  border: solid 2px green;
  border-radius: 0px;
}