@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,500;1,500&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "poppins", sans-serif;
}
main {
  min-height: 100vh;
  background: linear-gradient(-135deg, rgb(39, 28, 243), #ec2f12);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Header/Nav Bar */

header {
  background: linear-gradient(-135deg, rgb(39, 28, 243), #ec2f12);
}

nav {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  height: 90px;
}

.logo {
  font-family: "poppins", sans-serif;
  font-size: 30px;
  text-decoration: none;
}

.logo a {
  text-decoration: none;
  color: beige;
}

.logo a:hover {
  font-size: 2.5rem;
  color: #6ec1e4;
}

/* Main shit */

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  color: white;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 4rem;
}

.title {
  font-size: 4rem;
  font-weight: 500;
}

hr {
  width: 100%;
  background-color: white;
  height: 5px;
  border-radius: 1em;
  border: none;
}

.timer {
  font-size: 8rem;
  font-weight: 600;
}

.button-wrapper {
  display: flex;
  gap: 10px;
}

button {
  font-size: 2em;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 1em;
  border-radius: 3rem;
  border: none;
  color: white;
  cursor: pointer;
  margin: 0 20px;
}

button:hover {
  transform: translateY(-10px);
}

#start {
  background-color: lime;
}

#stop {
  background-color: red;
}

#reset {
  background-color: gray;
}