@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

:root {
  --ui-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.06),
    0 4px 5px 0 rgba(0, 0, 0, 0.06), 0 1px 10px 0 rgba(0, 0, 0, 0.08);
  fill: rgba(0, 0, 0, 0.54);
  --ui-shadow-border: 1px solid rgba(0, 0, 0, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body,
#root {
  height: 100%;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Orbitron" "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

h1,
h2,
h3 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;

  padding: 0;
  margin: 0;

  color: #636363;
}

h1 {
  font-size: 35px;
}

/* Media query for scaling down the h1 font when the viewport is less than 1080px wide */
@media (max-width: 1080px) {
  h1 {
    font-size: calc(40px * (100vw / 1080)); /* Scale down proportionally */
  }
}

a {
  font-family: "Orbitron";
  color: #636363;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

#root {
  display: flex;
  flex-direction: column;
}

.View {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;

  height: 100%;
  width: 100%;

  padding: 20px;
  font-family: "Orbitron", sans-serif;
}

.OuterBorder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  border-bottom: var(--ui-shadow-border);
  box-shadow: var(--ui-shadow);
}

.Banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Changed from center to flex-start */
  align-items: center;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.Banner img {
  width: 100%;
  height: 100%;
  max-width: 1084px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0; /* Ensure no automatic margins are being added */
  padding: 0; /* Ensure no padding is being added */
}

.Message {
  background-color: transparent;
  /* padding: 5px; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
}


.NavButtons {
  display: flex;
  width: 100%;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
}

.NavButton {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 55px; */
  /* width: 150px; */
  /* background: #ffffff; */
  /* border-radius: 20px; */
  font-size: 18px;
  font-weight: bold;
  color: #636363;
  text-transform: capitalize;
  /* border-bottom: var(--ui-shadow-border); */
}