@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100&family=Righteous&family=Roboto:wght@100&display=swap");

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

body {
  font-size: 100%;
  background-image: url("./img/purpleBackground.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.headerMenu {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  letter-spacing: 0.145em;
  color: #ffffff;
  padding: 24px;
}

a {
  cursor: pointer;
}

.headerMenu a:hover {
  color: darkslateblue;
}

.mainContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background-color: #9d84b7;
  opacity: 0.95;
  border-radius: 9px;
  padding: 20px;
  margin: 250px auto auto;
}

.mainContentSubTitle {
  font-family: "Montserrat";
  font-weight: 1000;
  font-size: 20px;
  letter-spacing: 0.145em;
  color: #e1e8eb;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

button {
  width: 241px;
  height: 48px;
  background-color: #d9d9d9;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.7);
  border-radius: 26px;
  border: 0;
  margin: 20px 20px 10px 20px;
  font-family: "Roboto";
  font-weight: 600;
  font-size: 15px;
  line-height: 23px;
  align-items: center;
  text-align: center;
  letter-spacing: 0.07em;
  color: #000000;
  cursor: pointer;
}

button:hover {
  color: whitesmoke;
  background-color: #000000;
}

.mainContentText {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-size: 10px;
  line-height: 15px;
  display: flex;
  align-items: center;
  text-align: center;
  letter-spacing: 0.07em;
  color: #ffffff;
}
