@import "../fontawesome6/css/fontawesome.css";
@import "../fontawesome6/css/solid.css";
@import "../fontawesome6/css/brands.css";
@import url("https://fonts.googleapis.com/css2?family=Mohave&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600&display=swap");
* {
  padding: 0;
  margin: 0;
  font-family: "mohave", sans-serif;
  text-shadow: 1px 1px 0px #000;
}

:root {
  color-scheme: only light;
}

.title {
  font-family: "Noto Sans JP", sans-serif;
  color: white;
  font-size: 70px;
  text-shadow: 1px 1px 0px #000;
}

body {
  min-height: 100vh;
  background-image: url("../img/stacked-waves-haikei(1).svg");
  background-size: cover;
}

header {
  width: 100vw;
  height: 100%;
}
header h1 {
  text-align: center;
  padding-top: 1.5rem;
}

.link-container {
  height: auto;
  margin: auto;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
}
.link-container .link-div {
  margin: auto;
  background-color: rgba(58, 12, 163, 0.2);
  width: 350px;
  padding: 0px 20px 4px 20px;
  text-align: center;
  border-radius: 20px;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  text-align: center;
  border: 1px solid rgba(247, 37, 133, 0.3);
  box-shadow: 0px 0px 5px 0px #f72585;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}
.link-container .link-div div {
  height: 35px;
  text-align: center;
  width: 100%;
}
.link-container .link-div a,
.link-container .link-div a:visited {
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
  width: 100%;
  margin: auto;
  text-align: left;
  padding-top: 4px;
}
.link-container .link-div .img {
  width: 30px;
  height: 30px;
  border: none;
}
.link-container .link-div:hover {
  border: 1px solid rgba(76, 201, 240, 0.3);
  box-shadow: 0px 0px 5px 0px #4cc9f0;
}

@media only screen and (max-width: 600px) {
  header {
    margin-bottom: 2vh;
  }
  .link-container {
    width: 80%;
  }
  .link-container .link-div {
    width: 260px;
    padding: 10px 10px;
  }
}
