html, body {
  height: 100%;
  margin: 0;
}

html {
  background-color: #000031;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  margin: 0;
  height: 100%;

  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


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


.main_image__container {
  margin-bottom: 30px;
}

.main_image {
  height: 380px;
  border-radius: 50%;
  box-shadow: 0 0 70px 5px #624ae3;
}

.main_title__container {
  margin-bottom: 40px;
}

.main_title {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-size: 160px;
  line-height: 160px;
  text-align: center;

  color: #FFFFFF;
}


.main_footer {
  width: 100%;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: center
}

.button {
  font-family: "Arimo", sans-serif;
  border-radius: 10px;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 35px;
  padding: 5px 15px;
  margin: 0 8px;

  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

.channel_button {
  background: #e5485e;
  box-shadow: 0 20px 30px -7px #e5485e80;
}

.bot_button {
  background: #54A9EB;
  box-shadow: 0 20px 30px -7px #54A9EB80;
}

.support_button {
  background: #47bb5a;
  box-shadow: 0 20px 30px -7px #47bb5a80;
}

.profile_button {
  background: #e9884f;
  box-shadow: 0 20px 30px -7px #e9884f80;
}

.wiki_button {
  background: #8842bd;
  box-shadow: 0 20px 30px -7px #8842bd80;
}

.button_icon {
  margin-right: 10px;
}

.button_text {
  font-family: 'Arimo';
  font-style: normal;
  font-weight: 400;
  font-size: 25px;
  line-height: 25px;
  
  color: #FFFFFF;
  flex-grow: 1;
  text-align: center;
}

.button:hover {
  box-shadow: none;
  transform: translate(0px, 3px);
}

.button:active {
  transform: scale(0.96) translate(0px, 3.2px);
}


footer {
  padding: 100px;
  background-color: black;
}

.row + .row {
  margin-top: 20px;
}



/* @media screen and (max-width: 900px) {
  .main_image {
    height: 800px;
  }
} */
