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

body {
  height: 100vh;
  width: 100vw;
  background: #111;
  color: #fff;
  font-family: sans-serif;
}

.screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
  text-align: center;
  padding: 2rem;
}

.hidden {
  display: none !important;
}

h1 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.buttons {
  display: flex;
  gap: 1.5rem;
}

button {
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

button:hover {
  background: #fff;
  color: #111;
}

.fullscreen-img {
  background: url("stefcho_bp.png") center center / contain no-repeat;
  padding: 0;
}
