@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

body {
    background-image: url('/static/AMC1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 50%;
    max-width: 1500px;
    background-color: rgba(255, 255, 255, 0.30);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 2);
}
.home-icon {
    position: absolute;
    top: 1rem; /* Adjusts vertical alignment */
    left: 88rem; /* Moves the icon to the left side */
    font-size: 1.5rem; /* Reduces the icon size */
    color: white; /* Matches header text color */
    text-decoration: none; /* Removes underline from link */
}



.button {
  text-decoration: none;
  color: white;
  background-color: #2c3e50;
  font-size: 18px;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: block; /* Changed from inline-block to block */
  margin: 0 auto; /* Centers horizontally */
}

.button:hover {
    background-color: #2980b9;
}

