*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: white;

  background-color: #251f23;

  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.img__container {
  flex: 4;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  height: 100%;
  background-color: #8694bb;
}

.img__container img {
  display: block;
  height: 100px;
  width: auto;
  cursor: default;
  border-radius: 200px;
  transition: all 0.5s;
}

.img__container img:hover {
  transform: scale(1.5);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.25);
}

.info__container {
  flex: 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.4rem 7.2rem;
  text-align: center;
}

.w-60 {
  width: 60%;
}

.m-auto {
  margin: 0 auto;
}

.info__container a {
  text-decoration: none;
}

.info__title {
  font-family: "Lobster Two", cursive;
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 3.2rem;
  cursor: default;
  text-shadow: 2px 0 #fff, -2px 0 #fff, 0 2px #fff, 0 -2px #fff, 1px 1px #fff,
    -1px -1px #fff, 1px -1px #fff, -1px 1px #fff;
  text-decoration: none;
  color: #251f23;
  transition: all 0.5s;
}
.info__title:hover {
  color: #8694bb;
}

.info__link:link,
.info__link:visited,
.info__link:hover,
.info__link:active {
  display: block;
  padding: 1.8rem 2.4rem;
  border-radius: 0.5rem;
  margin-bottom: 1.6rem;
  text-decoration: none;
  font-size: 1.6rem;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
}

.info__link--main {
  color: white;
  background: rgb(94, 105, 135);
  background: linear-gradient(
    180deg,
    rgba(94, 105, 135, 1) 0%,
    rgba(94, 105, 135, 1) 50%,
    rgba(69, 77, 96, 1) 50%,
    rgba(69, 77, 96, 1) 100%
  );
}

.info__link--sub {
  background: rgb(109, 110, 114);
  background: linear-gradient(
    180deg,
    rgba(109, 110, 114, 1) 0%,
    rgba(109, 110, 114, 1) 50%,
    rgba(77, 78, 82, 1) 50%,
    rgba(77, 78, 82, 1) 100%
  );
  color: white;
}

.half {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1.6rem;
}

.half .info__link {
  flex: 1;
}

.half .list {
  flex: 1;
  text-align: left;
  list-style: none;
}
.half .list li {
  margin-bottom: 0.8rem;
}
.half .list li i {
  color: #8694bb;
}

.half .info__link:nth-child(1) {
  margin-right: 1.6rem;
}

.contact__info {
  font-size: 1.6rem;
  width: 100%;
}

.contact__info .half {
  width: 100%;
  margin: 0 auto 1.6rem;
}

.contact__info p {
  margin-bottom: 1.6rem;
  text-align: center;
  line-height: 2.4rem;
}

.contact__info a:link,
.contact__info a:visited {
  text-decoration: none;
  color: white;
  display: block;
  margin-bottom: 1.6rem;
  transition: all 0.5s;
}
.contact__info a:hover,
.contact__info a:active {
  color: #8694bb;
}

.copyright__text {
  font-size: 1.2rem;
}

.copyright__text a:link,
.copyright__text a:visited {
  text-decoration: none;
  color: white;
  transition: all 0.5s;
}
.copyright__text a:hover,
.copyright__text a:active {
  color: #8694bb;
}

@media only screen and (max-width: 768px) {
  .img__container img {
    display: block;
    height: 150px;
    width: auto;
    cursor: default;
    border-radius: 200px;
    transition: all 0.5s;
  }
}
