body {
  background-color: var(--background-color);
  color: var(--text-primary);
}

main {
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  max-width: 600px;
  padding: 1rem;
  gap: 2rem;
}

main h1 {
  text-align: center;
  width: 100%;
}
.options-create {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.options-create a {
  width: 100%;
  /* background-color: #f9f9f9; */
  background-color: #2d3948;
  backdrop-filter: blur(50px);
  border-radius: 1rem;
  /* padding: 1rem; */
  border: 0.1rem solid #435469;
  transition: all 0.2s ease;
  overflow: hidden; /* opcional, para garantir que nada vazará */
  position: relative;
  display: flex;
  justify-content: space-between;
}

.options-create a:hover {
  transform: scale(1.02);
}

.options-create a .text {
  padding: 1rem;
}

.options-create a img {
  object-fit: cover; /* faz a imagem ocupar sem distorcer, cobrindo o contêiner */
  display: block;
  max-width: 150px;
}
