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

:root {
  --shadow: 2px 2px 10px #999999, -2px -2px 10px #ffffff;
  --inner-shadow: inset 2px 2px 10px #999999, inset -2px -2px 10px #ffffff;
}

* {
  box-sizing: border-box;
}
body {
  align-items: center;
  background-image: url('../bg.gif');
  background-size:cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  height: 75vh;
  display: flex;
  flex-direction: column;
  font-family: "Georgia", serif;
  font-size: 112.5%;
  font-weight: 400;
  color: rgb(19,111,42);
  margin: 0;
  min-height: 75vh;
  padding-block: clamp(2rem, 10vw, 4rem);
}

.container {
  align-items: center;
  border-radius: 10px;
  background: rgb(237,228,151);
  background: radial-gradient(circle, rgba(237,228,151,1) 0%, rgba(234,251,17,1) 58%);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  max-width: 392px;
  padding: clamp(1em, 5vw, 2em);
  width: 90%;
}

header {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

h1 {
  font-size: clamp(1.9em, 7vw, 4em);
  font-weight: 100;
  margin: 0;
  text-align: center;
}

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

.picture {
  /*border-radius: 50%;*/
  /*box-shadow: var(--inner-shadow);*/
  height: 8em;
  position: relative;
  width: 8em;
}

.picture:hover, .picture:focus {
  border-radius: 25%;
  box-shadow: var(--shadow);
  position: center;
  outline: none;
}

.picture::before {
  content: "";
  background: url("LOGO_NURULHUDA-removebg-preview.png");
  background-size: contain;
  /*border-radius: 50%;*/
  inset: 0;
  position: absolute;
  /*z-index: -1;*/
}

main {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1em;
  vertical-align: middle;
}

.link {
  border-radius: 10px;
  background: rgb(173,238,238);
  background: linear-gradient(130deg, rgba(173,238,238,0.989233193277311) 0%, rgba(214,206,189,1) 79%);
  box-shadow: var(--shadow);
  min-width: 20ch;
  color: black;
  padding: 0.5em 1em;
  text-align: center;
}

.link:hover, .link:focus {
  box-shadow: var(--inner-shadow);
  outline: none;
}

.link i {
  vertical-align: -13%;
}
