@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

* {
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
  color: #fff;
}

body {
  color: #fff;
  background: rgb(3, 103, 185);
  min-height: 100vh;
}

.container {
  display: flex;
  justify-content: center;
}

.glass-container {
  display: block;
  max-width: 72vw;
  margin-top: 10vh;
  margin-bottom: 30px;
  background: rgba(0, 0, 0, 0.56);
  padding: 50px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.6px);
  -webkit-backdrop-filter: blur(11.6px);
}

.logo {
  display: inline-block;
  font-size: 30px;
  font-weight: 600;
  margin-top: -10px;
}

ul.nav-links {
  margin: 0;
  float: right;
  display: flex;
  list-style: none;
}

li.nav-link {
  display: inline-block;
  margin-left: 30px;
  font-size: 17px;
  font-weight: 300;
}
/*li.nav-link a{
    font-family: ;
}*/
li.nav-link a:hover {
  color: hotpink;
}
.content {
  display: flex;
  width: 100%;
}

.main {
  margin-top: 10vh;
  display: inline-block;
  padding: 20px;
}

.main h2 {
  font-size: 35px;
}

.main p {
  font-size: 16px;
  line-height: 23px;
}

button {
  margin-top: 10px;
  width: 100%;
  height: 40px;
  font-size: 15px;
  color: #fff;
  background-color: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  border-color: rgb(3, 103, 185);
  background-color: rgb(3, 103, 185);
}

.image-wrapper {
  display: flex;
  margin-top: 2vh;
  position: relative;
}

.image-wrapper img {
  max-width: 500px;
}

.attrebute {
  position: absolute;
  bottom: 20px;
  right: 35%;
  font-size: 12px;
}

@media screen and (max-width: 1075px) {
  .content {
    flex-direction: column;
  }
}

@media screen and (max-width: 720px) {
  .logo {
    font-size: 22px;
  }
  li.nav-link {
    font-size: 13px;
  }
  .main h2 {
    font-size: 28px;
  }
  .main p {
    font-size: 15px;
  }
  .main a {
    font-size: 9px;
    text-align: center;
  }
  button {
    font-size: 13px;
  }
  .main .attrebute {
    text-align: center;
    margin-right: -85px;
  }
  .image-wrapper img {
    max-width: 300px;
  }
  .glass-container {
    margin: -30px;
  }
}
