:root {
    --bg: #f9faf8;
    --text: #1f2937;
    --accent: #00b37e;     
    --accent-dark: #007a5e; 
}

* {
    font-family: "Space Grotesk", sans-serif;
}

body {
    margin: 0;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: center;
    align-items: center;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    color: var(--text); 
}

#gif-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#gif-container img {
  opacity: 0;
  transition: opacity 1s ease;
  width: 300px;
  border-radius: 8px; 
}



button {
    background: transparent;
    color: var(--text);                 
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 28px;
    border: var(--accent-dark) 2px solid;         
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 179, 126, 0.4);
}

button:hover {
    color: var(--bg);
  background-color: var(--accent);       
  transform: translateY(-2px);    
  box-shadow: 0 6px 20px rgba(0, 179, 126, 0.5);
}

button:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px rgba(0, 179, 126, 0.3);
}
