:root {
  --bg: #243338;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Inter";
}

html {
  height: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  min-height: 100dvh;    
  text-align: center;
  position: relative;
}

.tweets {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tweet-img {
  width: min(90vw, 480px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
