@import url("var.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --theme-color: #ff8ba7;
}

body {
}

#axel {
  position: fixed;
  top: 50%;
  width: 500px;
  height: 85px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  line-height: 100px;
  font-size: 20px;
  transition: all 0.5s;
}
#axel.scrolled {
  background-color: blue;
  font-size: 20px;
  line-height: 50px;
}

.nav {
  height: 70px;
  background: black;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 40px;
}

.nav__links {
  text-decoration: none;
  color: white;
  height: auto;
  width: auto;
}

.taff {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.taff > a {
  height: 275px;
  width: 200px;
  position: relative;
}

.taff > a > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  height: 100vh;
  background-color: var(--theme-color);
}

.content__img {
  width: 500px;
}
