
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  /* background: linear-gradient(to bottom, #222222, #000000); */
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  /* padding: 2rem; */
  text-align: center;
}

.logo {
  /* background-color: red; */
  width: 100%;
  height: auto;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #38bdf8;
}

p {
  font-size: 15;
  color: #000000;
  font-weight: bold;
  max-width: 500px;
  margin-bottom: 2rem;
  text-align:center;
}

.link-button {
  width: 20%;
  background-color: #e47c27;
  color: #ffffff;
  /* padding: 1rem; */
  border: none;
  border-radius: 0.75rem;
  /* font-weight: 600; */
  /* width: 100%; */
  /* max-width: 10px; */
  margin-bottom: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(143, 143, 143, 0.2);
  align-items: center;
  justify-content: center;
  height: 62px;
  
}

.green {
  background-color: rgb(163, 61, 61);
}

.purple {
  background-color: rgb(230, 219, 65);
}

.blue {
  background-color: rgb(231, 118, 65);
}

.orange {
  background-color: rgb(109, 109, 109);
}

.link-button:hover {
  transform: scale(1.05);
  font-weight: bold;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.container-button {
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}

footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: #64748b;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  p {
    font-size: 0.90rem;
    padding: 0 1rem;
  }

  .link-button {
    font-size: 0.95rem;
    padding: 0.9rem;
  }
}
img {

    max-width: 250px;
    height: 250px;
    object-fit: cover;
    /* background-color: red; */
    
}

.icon-button {
  width: 35px;
  height: 35px;
  right: 100px;
  left: 100px;
}

.container{
  align-items: center;
  justify-content: center;
}

footer{
  font-size: 11px;
}