:root {
  --primary: #fed538;
}

body {
  padding: 0;
  margin: 0;
  background: #fff;
  font-family: "Combo", system-ui;
}

.container {
  height: 100vh;
  display: flex;
  padding-left: 10px;
  padding-right: 10px;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

h1 {
  font-size: 3.6rem;
  color: black;
  margin: 0;
  margin-bottom: 20px;
}

.socials {
  display: flex;
  column-gap: 15px;
}

.main-section {
  background: var(--primary);
  @media screen and (max-width: 767px) {
    /* padding-left: 30px; */
    /* padding-right: 30px; */
  }
}

.main-card p {
  font-size: 2em;
  margin-top: 5px;
  margin-bottom: 30px;
}

.dex-link img {
  border-radius: 9999px;
}

.bg-image {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  @media screen and (max-width: 767px) {
    display: none;
  }
}

.main-card h2 {
  margin-bottom: 40px;
  color: black;
  word-break: break-all;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  padding-left: 10px;
  padding-right: 10px;
}

#seivButton {
  margin-left: auto;
  margin-right: auto;
}

.main-card {
  text-align: center;
  max-width: 600px;
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
  color: var(--primary);
  font-weight: bold;
  padding-top: 30px;
  padding-bottom: 30px;
}

.main-img img {
  width: 360px;
  @media screen and (max-width: 767px) {
    width: 280px;
  }
}

#canvas-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0;
  background-color: white; /* Set background color of webpage to white */
}
#container {
  text-align: center;
  position: relative;
  padding-left: 10px;
  padding-right: 10px;
}
#canvas {
  border: 1px solid black;
  cursor: crosshair;
  /* width: 100%; */
  margin-bottom: 10px; /* Add margin below the canvas */
  background-color: white; /* Set background color of canvas to white */

  @media screen and (min-width: 768px) {
    display: none;
  }
}

#canvas-desktop {
  border: 1px solid black;
  cursor: crosshair;
  /* width: 100%; */
  display: none;
  margin-bottom: 10px; /* Add margin below the canvas */
  background-color: white; /* Set background color of canvas to white */

  @media screen and (min-width: 768px) {
    display: block;
  }
}

#messageContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  display: none;
}
#donTriButton,
#seivButton {
  display: none;
}

footer {
  background: var(--primary);
  text-align: center;
  font-size: 1.5em;
}
