@import url('https://fonts.googleapis.com/css2?family=BBH+Bogle&family=Silkscreen:wght@400;700&family=VT323&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.background {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    max-height: 400px;
    max-width: 100%;
    margin: 5px;
}

.background img {
    width: 50%;
    height: auto;
}

.head-one {
    height: 100vh;
    background: radial-gradient(circle, #ffeb3b, #000000);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.head-one h1 {
    font-size: 5rem;
    color: #000;
    font-family: "BBH Bogle", sans-serif;
}

.head-one p {
    font-size: 1.5rem;
    color: #000;
}

.anchor-link-grid {
    display: grid;
    grid-row: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 10px;
    gap: 15px;
}

.anchor-link-grid a {
    text-decoration: underline;
    color: #222;
    font-size: 1.2rem;
}

.anchor-link-grid a:hover {
  color: white;
}

.anchor-link {
    display: grid;
    justify-self: start;
}

.head-two {
    display: flex;
    flex-direction: column;
    justify-content: top;
    gap: 20px;
    min-height: 300px;
    background-color: #111;
}

h2 {
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    gap: 20px;
    font-size: 2.5rem;
    color: #ffeb3b;
    font-family: "silkscreen", sans-serif;
}

.two-column-flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
    min-height: 400px;
    gap: 40px;
    font-family: "inter", sans-serif;
}

.two-column-flex img {
    width: 50%;
    height: 80%;
    border: 5px solid #ffeb3b;
}

.scroll {
    margin-top: 30px;
    font-size: 1rem;
}

.container {
    max-width: 1920px;
    padding: 128px 96px;
    margin: 0 auto;
}

.section {
    background-color: #000;
}

.section img {
    min-width: 40%;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #ffeb3b;
}

.section p {
    margin-bottom: 15px;
}

.dark {
    background-color: #111;
}

.future {
    background-color: #1a1a1a;
}

.future ul {
    margin: 20px 0;
}

.future li {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    font-size: 0.9rem;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}

#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#scrollTopBtn:hover {
  background: #555;
}