html{
  scroll-behavior: smooth;
}

body {
  font-family: Roboto;
  margin: 0;
}

.bodyMain{
  display: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  background-color: #212121;
  width: 100%;
  position: fixed;
  top: 0;
  margin-bottom: 50px;
  z-index: 100;
}

nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #212121;
  position: relative;
  z-index: 100;

}

nav a {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  padding: 20px 50px;
  background-color: #212121;
  text-decoration: none;
  color: #ff7e22;
  font-size: larger;
  height: 40px;
  transition: 0.5s;
  border-bottom: #ff7e2200 1px solid;
}

.logout.columnNav {
  color: white;
  background-color: rgb(255, 0, 55);
  display: none;
}

.logout:hover {
  background-color: rgb(255, 32, 80);
}

#burger {
  transition: transform 0.5s ease-in-out;
}

#burger.rotated {
  transform: rotate(90deg);
}

nav a:hover {
  background-color: rgb(45, 45, 45);
  border-bottom: #ff7e22 1px solid;
}

.profile {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  color: #5865F2;
  background-color: white;
  border-radius: 50px;
}

.profile p {
  padding: 10px 40px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  font-weight: 600;
  margin: 0;
}

.profile img {
  margin-right: 10px;
  border-radius: 50%;
  margin-left: 10px;
}

#rowLogout {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0);
  color: #FF0037;
  text-decoration: none;
  padding: 10px 0;
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: 0.5s;
}

#rowLogout img {
  margin-left: 10px;
}

#rowLogout:hover {
  color: rgba(255, 255, 255, 0.9);
  background-color: #FF0037;
}

#rowLogout:hover img {
  content: url("/workImg/logoutwhite.svg");
}

.flexContainer {
  margin: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.menuHeader {
  display: flex;
  flex-direction: row;
}



@media (min-width: 1200px) {
  #burger {
    display: none;
  }

  nav {
    display: flex;
  }

  ;
}

@media (max-width: 1200px) {
  .profile {
    margin: 15.5px;
  }

  .profile p {
    padding: 10px 20px;
  }

  .profile img {
    padding: 10px 0;
  }

  nav {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  nav a:first-child {
    display: none;
  }

  nav a {
    padding: 20px 10px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .menuHeader {
    justify-content: space-between;
    width: 100%;
  }

  header {
    flex-direction: column-reverse;
    justify-content: end;
    align-items: end;
  }

  .logout.columnNav {
    display: flex;
  }

  #rowLogout {
    display: none;
  }
}


.spinner {
  position: relative;
  display: block;
  margin-top: 40vh;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner::before,
.spinner::after {
  border: 6.7px solid #ff9345;
  border-radius: 50%;
  position: absolute;
  content: '';
  display: block;
}

.spinner::before {
  width: 33.6px;
  height: 33.6px;
  border-bottom-color: transparent;
  border-left-color: transparent;
  animation: spinner-1o3y8q 0.75s infinite linear reverse;
}

.spinner::after {
  animation: spinner-1o3y8q 0.5s infinite linear;
  height: 56px;
  width: 56px;
  border-right-color: transparent;
  border-top-color: transparent;
}

@keyframes spinner-1o3y8q {
  to {
    transform: rotate(360deg);
  }
}