@import url('https://fonts.googleapis.com/css2?family=Fredoka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');


body {
  font-family: 'Fredoka', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100vh;
  margin: 0;
  padding: 0;
  background-color: #fbae6a;
  color: #fff;

}
.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75px;
    background-color: #fbae6a; /* Change the background color to light blue */
    color: #fff;
    font-family: 'Lato', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }
  
  .navbar .logo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .navbar .logo {
    max-width: auto;
    max-height: 75px;
  }
  
  .navbar .nav-link {
    color: #fff;
    text-decoration: none;
    margin: 0 20px;
    font-size: 24px;
    font-weight: bold; /* Add font-weight property */
  }

.timer-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    height: 50%;
    margin-top: -20px; /* Adjust the margin top to move the countdown box upwards */
  }
  
  .button-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px; /* Adjust the margin top to move the buttons upwards */
    gap: 10px;
  }

  .timer {
    font-size: 6rem !important;
    text-align: center;
    padding: 0;
    border-radius: 5px;
    background-color: #fbae6a;
    color: #fff;
    border: none;
  }
  
.start-button,
.pause-button,
.skip-button {
  font-family: 'Fredoka', sans-serif;
  background-color: #01BFFF;
  color: #fff;
  padding: 25px 50px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 9px #fff;
  font-size: 24px;
  cursor: pointer;
  width: 325px;
}


.start-button:hover,
.pause-button:hover,
.skip-button:hover {
  background-color: #00A0FF;
}

.start-button:active,
.pause-button:active,
.skip-button:active {
  background-color: #00A0FF;
  transform: translateY(4px);
  box-shadow: 0 6px #fff;
}

h1 {
  font-size: 5rem;
  text-align: center;
  margin-top: 70px; /* Adjust the margin top to move it closer to the countdown box */
  margin-bottom: 0.5rem;
}
