* {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Montserrat, sans-serif;
}

body {
  font-size: 1.5vw;
  margin-top: 50px;
  margin-bottom: 50px;

  background-color: #dbdcde;
}
/* Header flex CSS */
header {
  display: flex;
  position: fixed;
  width: 100%;
  top: 0px;
  height: 50px;
  align-items: center;
  font-family: Outfit;
  background-color: #dbdcde;
  z-index: 1;
}

nav {
  margin-left: auto;
  padding-right: 30px;
}

a {
  color: black;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
/* Footer flex CSS */
footer {
  display: flex;
  position: fixed;
  justify-content: space-evenly;
  width: 100%;
  bottom: 0px;
  height: 40px;
  background-color: #dbdcde;
  align-items: center;
}

/*Training flexbox*/
.training-plans {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  height: 50vh;
}

img {
  height: 150px;
}

a:hover {
  background-color: #32becd;
}
