p,
h1,
h2,
h3,
h4,
nav,
::placeholder {
  font-family: "Archivo Narrow", sans-serif;
}

nav a {
  text-decoration: none;
  margin-right: 2rem;
  color: #2e5bff;
  padding: 10px;
}

nav a:hover {
  color: white;
  background-color: #2e5bff;
  cursor: pointer;
}

nav {
  margin-bottom: 5rem;
  margin-top: 0px;
  display: flex;
  width: 100%;
}

nav ul {
  text-decoration: none;
}

nav li {
  display: inline;
}

.currentNavSelected {
  font-weight: 900;
}

h1 {
  color: #2e5bff;
  font-size: 42px;
}

main {
  margin: 5rem 20rem 5rem 20rem;
  border: solid #2e5bff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.dotaLogo {
  position: fixed;
  max-width: 3%;
  top: 100px;
  right: 360px;
}

.errorMessageRegular {
  outline: 1px solid red;
  padding: 1rem;
  margin: 5rem;
  color: red;
}

.mainLadderHolder {
  display: flex;
  flex-direction: column;
}

.loaderBody {
  position: relative;
  align-self: center;
  background-color: #2e5bff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 5rem;
  animation: loaderSpin 1s ease-in-out infinite;
}

.loaderSpinnyPart1,
.loaderSpinnyPart2 {
  box-shadow: 5px 0px 10px #2b2b2b;
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: white;
}

.loaderSpinnyPart1 {
  top: 50px;
  left: 50px;
}

.loaderSpinnyPart2 {
  bottom: 50px;
  right: 50px;
}

.teamLadderCardFull {
  color: white;
  text-decoration: none;
  align-items: flex-start;
  background-color: #2e5bff;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  margin: 0.5rem;
}

.teamLadderCardFull:last-child {
  margin-bottom: 5rem;
}

.teamLadderCardFull:hover {
  cursor: pointer;
  animation: borderRad 1s linear forwards;
  box-shadow: 20px 20px 0px #2e5bff;
  border: solid #2e5bff;
  background-color: white;
  color: #2e5bff;
}

/*// Details page //*/

.detailsReturnLink {
  color: #2e5bff;
  position: absolute;
  top: 175px;
  left: 380px;
  text-decoration: underline;
}

.detailsMainContent {
  display: flex;
  flex-direction: column;
  margin-bottom: 10rem;
}

.detailsMainContent h2 {
  color: #2e5bff;
  margin: 1rem;
  display: none;
}

.teamStats,
.teamMembers,
.teamLatestMatches {
  justify-content: center;
  min-width: 100px;
  display: none;
  background-color: #2e5bff;
  padding: 2rem;
  color: white;
  margin: 1rem;
}

.teamMembers div,
.teamStats div,
.teamLatestMatches div {
  padding: 10px;
}

.teamLatestMatches {
  flex-direction: column;
}

.teamLatestMatches div {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.teamLatestMatches p {
  margin: 0px;
}

/*//////////////////*/

/*// Contactus page //*/

form {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}

input,
textarea {
  border: solid #2e5bff;
  padding: 10px;
  margin: 10px;
}

#adress {
  width: 300px;
}

::placeholder {
  opacity: 75%;
  color: #2e5bff;
}

button {
  margin-top: 2rem;
  margin-bottom: 5rem;
  align-self: center;
  max-width: 100px;
  padding: 15px;
  border: none;
  color: white;
  background-color: #2e5bff;
}

button:hover {
  cursor: pointer;
}

.formErrorDiv {
  display: none;
  margin-left: 10px;
  margin-bottom: -20px;
  color: #f54242;
}

.validationPassed {
  display: none;
  text-align: center;
  color: #42f551;
}

/*//////////////////*/

@keyframes loaderSpin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes borderRad {
  0% {
    border-radius: 0px 0px 0px 0px;
  }
  100% {
    border-radius: 0px 0px 200px 0px;
    margin: 2rem 1rem 2rem 1rem;
  }
}
