/*
Theme Name: emoji
Theme URI: https://nataliejharp.com
Author: Natalie J Harp
Author URI: https://nataliejharp.com
Description: A minimal theme displaying a centered, linked emoji
Version: 1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: emoji
Domain Path: /languages
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.emoji-container {
  text-align: center;
}

.emoji-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 200px;
  text-decoration: none;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.emoji-link:hover {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.emoji-link:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .emoji-link {
    font-size: 120px;
  }
}

@media (max-width: 480px) {
  .emoji-link {
    font-size: 80px;
  }
}
