@charset "UTF-8";
/*#region Colors */
/*#endregion Colors */
/*#region Fonts */
@import url("https://fonts.googleapis.com/css2?family=Readex+Pro&display=swap");
/*#endregion Fonts */
html {
  box-sizing: border-box;
  font-family: "Readex Pro", sans-serif;
  color: #2b2b2b;
}

* {
  margin: 0;
  padding: 0;
}
*, *:before, *:after {
  box-sizing: inherit;
}

ol,
ul {
  list-style: none;
}

body {
  overflow: hidden;
  background-color: #f2ece3;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  font-weight: bold;
}
a:hover {
  font-style: italic;
}

nav {
  width: 100vw;
  position: fixed;
  bottom: 0;
  padding-right: 5vw;
  padding-bottom: 5vh;
  z-index: 3;
  display: flex;
  flex-flow: row;
  justify-content: end;
}
nav img {
  width: 24px;
}
nav .NavItem {
  color: #ffd502;
  transition: color 0.5s;
  text-decoration: none;
  font-size: 1.2rem;
}
nav .NavItem:hover span {
  text-decoration: underline;
}
nav .NavItem:not(:last-child)::after {
  content: "◆";
  margin: 0 1vw;
  font-style: normal;
}
nav .NavItem span {
  border: 1px solid #0000;
  padding: 0.2em;
}

/*#region Index Articles */
main {
  width: 100vw;
  height: 100vh;
  scroll-snap-type: both proximity;
  overflow: auto;
}

h1,
h2 {
  z-index: 3;
}

article {
  height: 100vh;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  position: relative;
}

/*#endregion Index Articles */
/*#region Article Descriptions */
.Description {
  width: 50vw;
  position: absolute;
  left: 8vw;
  top: 50vh;
  z-index: 2;
  padding: 0.5rem;
}
.Description ul {
  display: flex;
  flex-flow: row nowrap;
}
.Description ul li {
  flex: 1;
  margin-right: 0.5rem;
}

/*#endregion Article Descriptions */
/*#region Drawings */
.Drawings {
  display: flex;
  align-items: center;
}

.Portrait {
  width: 25%;
  position: absolute;
  top: 18%;
  right: 10%;
  z-index: 1;
}

.Eyes {
  position: absolute;
  width: 12%;
  top: 25%;
  right: 22%;
  z-index: 1;
}

.Speech, .Title {
  width: 60%;
  height: 25%;
  position: absolute;
  right: 35%;
  top: 23%;
  z-index: 1;
}

.Title {
  width: 50%;
  right: 42%;
  padding-top: 3vh;
  text-align: center;
  font-size: 3em;
  z-index: 2;
}

/*#endregion Drawings */
/*#region Individual Articles */
#Welcome {
  background: #2b2b2b;
  color: #ffd502;
}

#TeachCS {
  background: #f2ece3;
  color: #2b2b2b;
}
#TeachCS::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #416eae;
  width: 70vw;
  height: 60vh;
  z-index: 0;
}
#TeachCS .Description {
  background-color: #f2ece3;
}

#Art {
  background: #2b2b2b;
  color: #f2ece3;
}
#Art::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #aa5151;
  width: 70vw;
  height: 60vh;
  z-index: 0;
}
#Art .Description {
  background-color: #aa5151;
}

#Projects {
  background: #ffd502;
  color: #416eae;
}
#Projects::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #f2ece3;
  width: 70vw;
  height: 60vh;
  z-index: 0;
}
#Projects .Description {
  background-color: #ffd502;
}

#Contact {
  color: #aa5151;
}
#Contact .Description {
  background-color: #f2ece3;
}

/*#endregion Individual Articles */
@media screen and (max-width: 1025px) {
  .Title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 800px) {
  nav {
    display: none;
  }

  .Title,
  .Speech,
  .Title {
    font-size: 1.5rem;
    width: 80vw;
    top: 12%;
    left: 10%;
    height: 10%;
  }

  .Portrait {
    width: 80vw;
    top: 25%;
  }

  .Eyes {
    width: 30vw;
    top: 30%;
    right: 50%;
  }

  .Description {
    width: 80vw;
    left: 10%;
  }
}
