/* Resetting default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Making the body take full height and applying Dracula theme background */
  body, html {
    height: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #282a36; /* Dracula background color */
    color: #f8f8f2; /* Light text color */
  }
  
  /* Centering everything inside the body */
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
    position: relative; /* Make container relative for positioning */
  }
  
  /* Emoticon representing "nope" */
  .nope-icon {
    /*position: absolute;*/
    left: 50%;
    font-size: 3rem; /* Adjust size of the emoticon */
  }
  
  /* Making the image responsive */
  .image {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
  }
  
  /* Counter container to hold counter and description */
  .counter-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
  }
  
  /* Styling for the counter with Dracula theme */
  .counter {
    font-size: 2rem;
    font-weight: bold;
    color: #f8f8f2; /* Light text color for counter */
    background-color: #44475a; /* Dracula background color for counter */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3); /* Slight shadow for better readability */
    margin-bottom: 10px; /* Space between counter and description */
  }
  
  /* Styling for the description */
  .counter-description {
    font-size: 1.5rem; /* Increased font size */
    color: #50fa7b; /* Green color from Dracula theme */
    margin-top: 5px;
    font-style: italic;
    text-align: center;
  }
  
  /* Media queries for responsiveness */
  @media (max-width: 768px) {
    .counter {
      font-size: 1.5rem;
    }
    .counter-description {
      font-size: 1.3rem; /* Adjust description font size for smaller screens */
    }
  }
  
  @media (max-width: 480px) {
    .counter {
      font-size: 1.2rem;
    }
    .counter-description {
      font-size: 1.1rem; /* Adjust description font size for even smaller screens */
    }
  }