/* copyright Ahmad Wandi */

:root {
  font-size: 62.5%;
}

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

body {
  background-image: url("https://i.postimg.cc/0QJQ5Kf3/miku-wellpaper-uhd.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}

main {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.container {
  width: 28rem;
  padding: 1rem 2rem;
  background-color: rgba(255, 255, 255, 0.45);
  border-radius: 2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 1rem 0.1rem rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(1.5rem);
  min-width: 25rem;
  box-shadow: rgb(37 39 89 / 8%) 0px 8px 8px 0;
}

.image {
  width: 40%;
  height: auto;
  border-radius: 5rem;
  display: block;
  margin: 1rem auto;
}

hr {
  border-color: #673146;
}

h1,
.occupation {
  text-align: center;
}

h1 {
  font-family: Muli, sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
}

.occupation {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-family: "Space Mono", monospace;
}

.link-boxes {
  margin: 2rem 1rem;
  font-family: Muli, sans-serif;
  font-weight: 700;
  font-size: 1.4em;
  text-transform: capitalize;

}

.link-boxes a {
  text-decoration: none;
  display: block;
  color: #27213b;
  border: 0.1rem solid #673146;
  text-align: center;
  margin: 0.7rem;
  border-radius: 0.5rem;
  padding: 0.3rem;
  transition: all 200ms ease-in-out;
  box-shadow: rgb(37 39 89 / 8%) 0px 8px 8px 0;
}

.link-boxes a:hover {
  border: 0.1rem solid #27213b;
  background-color: #01bae9;
  cursor: pointer;
  ;
}

.location {
  text-align: center;
  margin: 0.7rem;
  font-size: 1.2rem;
  font-family: "Space Mono", monospace;
}


@media only screen and (min-width:992px) {

  .image {
    width: 40%;
  }

  h1 {
    font-size: 2.4rem;
  }
}
