@import url('https://fonts.googleapis.com/css2?family=Open+Sans&display=swap');

body {
  font-family: 'Open Sans', sans-serif;
  background: url(mtl.jpg) no-repeat center center fixed;
  background-size: cover;
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mtl_logo {
  width: 150px;
}

.title {
  font-size: 6rem;
  margin-left: 20px;
}

.hero_title {
  width: 100%;
  color: white;
  display: flex;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 30%;
}

.content_wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 20px;
  color: white;
  font-size: 1.5rem;
  padding: 2rem;
}

p {
  margin: 0;
}

label {
  color: white;
  position: absolute;
  top: -14px;
  font-size: 0.8rem;
}

.avatar {
  position: absolute;
  left: -35px;
  top: -35px;
}

.avatar-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

a:link {
  text-decoration: none;
  color:#fc95a6;
}

a:visited {
  text-decoration: none;
  color: #fc778d;
}

a:hover {
  text-decoration: underline;
}

a:active {
  text-decoration: underline;
}

@media only screen and (max-width: 980px) {

  .hero_title {
    margin: 1rem 2rem 1rem 2rem;

  }

  .main {
    width: 90%;
    margin: 2rem 0 2rem 0;
    align-items: flex-start;
  }

  .content_wrapper {
    font-size: 3rem;
  }

  .avatar {
    position: relative;
    left: auto;
    top: auto;
    margin-top: 2rem;
  }

  .avatar-img {
    width: 150px;
    height: 150px;
  }

  
}