/* Universal Reset */
* {
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

/* Header Section */
.header {
  width: 100%;
  background-color: #000;
}

.header__container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo img {
  width: 200px;
}

.header__nav a {
  color: white;
  text-decoration: none;
  margin-right: 15px;
}

/* Main Logo */
.main-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}

.main-logo__image {
  width: 500px;
  height: auto;
}

/* Workout Sections */
.workout-sections {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
  padding-bottom: 50px;
}

.workout-section {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 30%;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.workout-section__title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  display: block;
}

.workout-section__add-button {
  background-color: #007BFF;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.workout-section__add-button:hover {
  background-color: #0056b3;
}

.workout-section__entries {
  margin-top: 10px;
}
