html {
  font-family: "Arial", sans-serif;
}

body {
  margin: 0;
  margin-left: 75px;
  background-color: black;
  color: white;
}

header {
  display: flex;
  width: 100%;
}

section {
  margin: 0 4px;
  margin-bottom: 4px;
}

.icon {
  height: 40px;
  width: 40px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon:hover {
  cursor: pointer;
  opacity: 0.7;
}

a {
  outline: none;
  margin-right: 25px;
  color: yellow;
}

.logo-icon {
  background-image: url("../media/icons/logo.png");
}

.home-icon {
  background-image: url("../media/icons/home.svg");
}

.profile-icon {
  background-image: url("../media/icons/profile.svg");
}

.credits-icon {
  background-image: url("../media/icons/credits.svg");
}

.settings-icon {
  background-image: url("../media/icons/settings.svg");
}

.menu-icon {
  background-image: url("../media/icons/menu.svg");
}

.close-icon {
  background-image: url("../media/icons/close.svg");
}

.previous-icon {
  background-image: url("../media/icons/previous.svg");
}

.next-icon {
  background-image: url("../media/icons/next.svg");
}

.delete-icon {
  background-image: url("../media/icons/delete.svg");
}

.btn {
  font-size: 20px;
  color: white;
  background-color: black;
  padding: 10px;
  border: 2px solid white;
  border-radius: 10px;
}

.btn:hover {
  cursor: pointer;
  color: black;
  background-color: white;
}

.blur-background {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

h1 {
  margin-top: 30px;
}
