/* CSS by some homo - Copyright © 2024 */

html {
  scroll-behavior: smooth;
}

body {
  background-image: url("../assets/bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  font-family: "Ubuntu", sans-serif;
  text-decoration: none;
}

div.footer {
  opacity: 0.2;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
}

hr {
  margin: 10px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-color: #989898;
  opacity: 0.2;
}

img {
  border-radius: 50%;
  box-shadow: 0px 0px 60px -11px rgba(0, 0, 0, 0.4);
}

img.dev {
  margin: 20px;
}

a {
  color: black;
  transform: scale(2);
  text-decoration: none;
  position: relative;
}

a.link::before {
  content: ">";
  color: black;
  position: relative;
}

a.link:hover:before {
  padding-right: 5px;
}

a.link:hover {
  color: #989898;
  padding-left: 5px;
}

a.button {
  color: white;
  font-family: Arial, sans-serif;
  font-size: 70;
  transform: scale(2);
  text-decoration: none;
  position: relative;
  text-shadow: 0 0 25px #4e4e4e;
}

a.button:hover {
  color: #c7c7c7;
}

h1 {
  margin: 50px;
  color: white;
  font-family: "Bebas Neue", system-ui;
  font-size: 75px;
  text-shadow: 0 0 25px black;
  font-style: italic; 
}

h2 {
  color: white;
  font-family: "Bebas Neue", system-ui;
  font-size: 25px;
  text-shadow: 0 0 15px black;
  font-style: italic; 
}

h3 {
  margin: 20px;
  color: black;

  font-size: 20px;
}

p {
  color: black;
}

p.jp {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

a img {
  transition: all 0.6s cubic-bezier(.1, 0, .1, 1);
}

a img:hover {
  position: relative;
  transition: all 0.6s cubic-bezier(.1, 0, .1, 1);
  transform: scale(1.05);
}

div.transbox {
  width: 600px;
  padding: 85px;
  border-radius: 20px;
  box-shadow: 0px 0px 60px -11px rgba(0, 0, 0, 0.68);
  margin: 50px;
  background-color: rgba(255, 255, 255, 0.6);
  position: relative;
}

.non-interactable {
  user-select: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

a,
a.link::before,
a.button {
  transition: all 0.6s cubic-bezier(.1, 0, .1, 1);
  -webkit-transition: all 0.6s cubic-bezier(.1, 0, .1, 1);
  -moz-transition: all 0.6s cubic-bezier(.1, 0, .1, 1);
}

a.link::before{
  font-family: "Ubuntu", sans-serif;
}

/* half desktop screen */
@media (max-width: 900px) {
  div.transbox {
    width: 100%;
    padding: 0;
    padding-top: 85px;
    padding-bottom: 85px;
    margin: 0;
  }
}

/* smartphone */
@media (max-width: 550px) {
  h1 {
    margin: 0;
    margin-top: 30px;
    margin-bottom: 30px;
    font-size: 50px;
  }

  img.dev {
    width: 100px;
    margin: 10px;
  }
}