:root {
  --p-colour: #1b2236;
  --t-colour: #fff;
}

.menu-btn {
  position: absolute;
  z-index: 3;
  right: 35px;
  top: 35px;
  cursor: pointer;
}
.menu-btn:hover {
  color: #b62c88;
  transition: all 0.5s ease-out;
}
.menu-btn .btn-lin {
  width: 28px;
  height: 3px;
  margin: 0 0 5px 0;
  background: var(--t-colour);
}
.menu-btn .btn-lin:hover {
  color: #b62c88;
  transition: all 0.5s ease-out;
}
.menu-btn.close {
  transform: rotate(180deg);
}
.menu-btn.close .btn-lin:nth-child(2) {
  opacity: 0;
}
.menu-btn.close .btn-lin:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-btn.close .btn-lin:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.menu {
  position: fixed;
  top: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-out;
  pointer-events: none;
}
.menu.show {
  pointer-events: auto;
  opacity: 1;
}
.menu-br, .menu-nav {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  float: left;
  width: 50%;
  height: 100vh;
}
.menu-nav {
  margin: 0;
  padding: 0;
  background: color-mix(in srgb, color-mix(in srgb, var(--p-colour) 98.5%, white 1.5%) 90%, transparent);
  list-style: none;
  transform: translate(100%, 0);
  transition: transform 0.5s ease-out;
}
.menu-nav.show {
  transform: translate(0, 0);
}
.menu .nav-item.current > a {
  color: #b62c88;
}
.menu .nav-link {
  display: inline-block;
  position: relative;
  font-size: 3vh;
  padding: 1rem 0;
  font-weight: 300;
}
.menu .nav-link:hover {
  color: #b62c88;
}
.menu-br {
  background: var(--p-colour);
  transform: translate(-100%, 0);
  transition: transform 0.5s ease-out;
}
.menu-br.show {
  transform: translate(0, 0);
}
.menu-br .portrait {
  width: 20vw;
  height: 20vw;
  background: url(../images/test.png);
  background-size: cover;
  background-position: center;
  border: solid 3px #b62c88;
  border-radius: 50%;
}

.theme-btn {
  position: absolute;
  left: 35px;
  top: 25px;
  font-size: 30px;
  z-index: 3;
}
.theme-btn:hover {
  color: #b62c88;
  transition: all 0.5s ease-out;
}
.theme-btn.light {
  transform: rotate(360deg);
}

* {
  box-sizing: border-box;
}

body#bg-img {
  background: url(../images/test.png);
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
}
body:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: color-mix(in srgb, var(--p-colour) 90%, transparent);
}
body {
  background: var(--p-colour);
  color: var(--t-colour);
  height: 100%;
  margin: 0;
  font-family: Cambria, Cochin, Georgia, Times, "Times New Roman", serif;
  line-height: 1.5;
}

h1, h2, h3 {
  margin: 0;
  font-weight: normal;
}
h1.b-head, h2.b-head, h3.b-head {
  font-size: 10vh;
}
h1.s-head, h2.s-head, h3.s-head {
  margin-bottom: 1rem;
  padding: 0.2rem 1rem;
  font-size: 2.5vh;
  background: color-mix(in srgb, color-mix(in srgb, var(--p-colour) 98.5%, white 1.5%) 50%, transparent);
}

a {
  color: var(--t-colour);
  text-decoration: none;
}
a:hover {
  color: #b62c88;
  transition: all 0.5s ease-out;
}

header {
  position: fixed;
  z-index: 2;
  width: 100%;
}

.a-text {
  color: #b62c88;
}

main {
  padding: 4rem;
}
main .icons {
  margin-top: 1rem;
  font-size: 2.5vh;
}
main .icons a {
  padding: 0.4rem;
}
main#home {
  overflow: hidden;
  margin-top: 20vh;
}
main#contact {
  margin-top: 5vh;
}
main .w-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10ch, 1fr));
  gap: 5px;
}
main .w-grid .grid-item {
  padding: 4px;
  background: color-mix(in srgb, color-mix(in srgb, var(--p-colour) 98.5%, black 1.5%) 50%, transparent);
}

.iconify-icon {
  padding: 0;
}

/*# sourceMappingURL=main.css.map */
