@import url("https://fonts.googleapis.com/css?family=Prompt:300,600&display=swap");

:root {
  --pri-color: #010101;
  --sec-color: #ede9de;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Prompt", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  background-color: var(--pri-color);
  color: var(--sec-color);
}

.container {
  display: flex;
  align-items: center;
  gap: 1em;
}

.informations {
  width: 50%;
  background-color: rgba(0, 0, 0, .7);
  border-radius: 1em;
  padding: 1em;
  max-width: 400px;
  position: fixed;
  right: 1em;
  transition: all .3s ease-out;
}

.img {
  width: 50%;
}

.img img {
  height: 100vh;
}

.title {
  width: 100%;
  font-size: 2em;
  text-align: center;
}

.subtitle {
  margin-left: .5em;
  padding-left: .5em;
  border-left: 3px solid #Fe0000;
}

.socials {
  display: flex;
  gap: 2em;
  max-width: 500px;
  font-size: 1.5em;
  margin-top: 1em;
  transition: all .3s ease-out;
  justify-content: center;
}

.socials a {
  position: relative;
  /* color: #fff; */
  text-decoration: none;
}

a::before {
  content: "";
  position: absolute;
  display: block;
  width: 150%;
  height: 2px;
  bottom: 0;
  left: -25%;
  background-color: #fff;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

a:hover::before {
  transform: scaleX(1);
}

.fb::before {
  background-color: #1877f2;
}

.li::before {
  background-color: #2867B2;
}

.ig::before {
  background-color: #dc2743;
}

.fb {
  color: #1877f2;
}

.li {
  color: #2867B2;
}

.ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}


@media screen and (max-width: 425px) {
  .container {
    width: 95vw;
    margin: 1em auto;
    flex-direction: column;
  }

  .img {
    width: 100%;
  }

  .informations {
    width: 100%;
    position: inherit;
    background: none;
  }

  .img img {
    border-radius: 1em;
    width: 95vw;
    height: auto;
    box-shadow: rgba(59, 59, 59, 0.25) 0px 54px 55px, rgba(59, 59, 59, 0.12) 0px -12px 30px, rgba(59, 59, 59, 0.12) 0px 4px 6px, rgba(59, 59, 59, 0.17) 0px 12px 13px, rgba(59, 59, 59, 0.09) 0px -3px 5px;
  }
}