* {
  box-sizing: border-box;
}

body {
  background-color: #F6F6F6;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  font-family: "Times New Roman", Times, serif;
  background-image: url("potato-emoji.png"); /* Replace with the path to your potato emoji image */
  background-repeat: repeat;
}

p {font-size: 24px;}
.container {
  background-color: white;
  padding: 20px;
  text-align: center;
  max-width: 80%;
  width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

h1 {
  margin-top: 0;
    letter-spacing:  -0.025em;
}

a:link {
  color: blue;
}

/* visited link */
a:visited {
  color: blue;
}

/* mouse over link */
a:hover {
  color: hotpink;
}

.video {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (height:width) */
  overflow: hidden;
}

.video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.countdown {
  margin-bottom: 20px;
}

h2 {
  margin-top: 0;
}

#timer {
  font-size: 24px;
}

@media (max-width: 600px) {
  .container {
    width: 90%;
  }
}
