:root {
  --white: white;
  --black: black;
}

body {
  color: #fff;
  background-color: #7556ff;
  font-family: Kastelov Axiforma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.section {
  margin-left: auto;
  margin-right: auto;
}

.container {
  max-width: 124rem;
  margin-left: auto;
  margin-right: auto;
}

.logo_wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.link {
  opacity: .8;
  cursor: pointer;
  transition: all .2s cubic-bezier(.55, .055, .675, .19);
}

.link:hover {
  opacity: 1;
  transform: scale(1.1);
}

.image {
  width: 100%;
  height: auto;
}

.text-block {
  color: #3a28a0;
  text-align: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .section {
    padding-left: 0%;
    padding-right: 0%;
  }

  .logo_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
}

@media screen and (max-width: 767px) {
  .text-block {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 479px) {
  .logo_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
  }

  .text-block {
    font-size: 1rem;
  }
}


@font-face {
  font-family: 'Kastelov Axiforma';
  src: url('../fonts/Kastelov---Axiforma-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kastelov Axiforma';
  src: url('../fonts/Kastelov---Axiforma-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Kastelov Axiforma';
  src: url('../fonts/Kastelov---Axiforma-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}