@import url("https://fonts.googleapis.com/css2?family=Solway:wght@450&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Solway:wght@400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Solway:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@300&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@450&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Karma:wght@500&family=Solway&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400&display=swap");

body {
  margin: 0;
}

div#name {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  /* background-image: url('./landerBG2.png'); */
  background-size: cover;
  background-color: whitesmoke;
  overflow: visible;
  z-index: 100;
  position: relative;
}

.topnav {
  overflow: visible;
  position: relative;
}

.topnav #myLinks {
  display: block;
  margin-left: 10em;
  margin-top: 0.5em;
}

.topnav a {
  float: left;
  color: black;
  padding: 2vh 2vw;
  text-decoration: none;
  font-size: 2.5vh;
  font-family: "Solway", serif;
  font-weight: 600;
}

.topnav a.icon {
  float: right;
}

.topnav .dropdown {
  float: left;
  position: relative;
}

.topnav .dropdown > a {
  cursor: default;
}

.topnav .dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: whitesmoke;
  min-width: 220px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.topnav .dropdown-content a {
  float: none;
  display: block;
  padding: 1.5vh 2vw;
  font-size: 2vh;
  font-weight: 400;
  white-space: nowrap;
}

.topnav .dropdown-content a:hover {
  background-color: #e8e8e8;
}

.topnav .dropdown:hover .dropdown-content {
  display: block;
}

.topnav .dropdown:hover > a {
  background-color: #e8e8e8;
}

.active {
  color: white;
}

p#landerName {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 8vh;
  margin-left: 3em;
  margin-top: 2em;
  text-shadow: 0 0.1vw 0.1vw rgba(0, 0, 0, 0.25);
  /* display: block;
    font-size: 2em; */
  /* margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px; */
  /* font-weight: bold; */
}

p#smolDescription {
  font-family: "Solway";
  font-size: 4vh;
  margin-left: 6em;
  font-weight: 450;
}

p#chai {
  font-family: "Solway";
  font-weight: 600;
  font-size: 4vh;
  margin-left: 67vw;
  margin-top: 2em;
}

a.nameButtons {
  /* background-color: blueviolet; */
  padding: 1.5vh 3vw;
  margin-left: 1vw;
  margin-right: 1vw;
  font-family: "Solway", serif;
  font-weight: 600;
  font-size: 2.3vh;
  text-decoration: none;
  color: black;
}

#buttonContaines {
  margin-left: 3vw;
}

a#contactB {
  margin-left: 7.8em;
  background-color: rgba(255, 0, 0, 0.33);
}

a#contactB:hover {
  margin-left: 7.8em;
  background-color: rgba(255, 0, 0, 0.5);
}

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: black;
}

.container {
  width: 100%;
  height: 30vh;
}

.top {
  display: flex;
  width: 80vw;
  height: 30vh;
  margin-top: 10vh;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10vh;
}

.top ul {
  list-style: none;
  width: 100%;
  height: 30vh;
  z-index: 1;
  box-sizing: border-box;
}

.top ul li {
  position: relative;
  float: left;
  width: 25%;
  height: 100%;
  overflow: hidden;
}

.top ul li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  content: "";
  color: white;
  opacity: 0.4;
  text-align: center;
  box-sizing: border-box;
  pointer-events: none;
}

.top ul li:hover::before {
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
}

.top ul li img {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.lightbox {
  position: fixed;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.75);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  top: -100%;
}

.lightbox:target {
  outline: none;
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.lightbox:target img {
  top: 0;
  top: 50%;
  transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

a#projectsB {
  background-color: rgba(24, 0, 255, 0.33);
}

a#projectsB:hover {
  background-color: rgba(24, 0, 255, 0.5);
}

a#resumeB {
  background-color: rgba(0, 255, 75, 0.33);
}

a#resumeB:hover {
  background-color: rgba(0, 255, 75, 0.5);
}

div#about,
div#moreAbout {
  width: 100%;
  height: fit-content;
  margin: 0;
  padding: 0;
  /* background-image: url('./image\ 13.png'); */
  /* background-image: url("./landerBG2.png"); */
  background-size: cover;
  background-color: whitesmoke;
}

img#puzzle {
  margin-left: 10vw;
  margin-top: 0vh;
  width: 10vw;
}

img#puzzle2 {
  margin-right: 5vw;
  margin-top: 0vh;
  width: 10vw;
}

.section-emoji {
  font-size: 6vw;
  margin-left: 10vw;
  display: block;
  line-height: 1.2;
}

.section-emoji-right {
  font-size: 6vw;
  margin-right: 5vw;
  display: block;
  text-align: right;
  line-height: 1.2;
}

h1#aboutMe {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 5vh;
  margin-left: 10vw;
  margin-right: 3vw;
  /* margin-top: 10em; */
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.25);
}

h1#aboutMe2 {
  font-family: "Raleway";
  font-weight: 400;
  font-size: 5vh;
  margin-right: 5vw;
  /* margin-top: 10em; */
  /* text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.25); */
}

p#nameAbout {
  font-family: "Raleway";
  font-weight: 450;
  font-size: 6.9vh;
  margin-left: 1.5vw;
  margin-top: 15vh;
  margin-bottom: 3vh;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  box-shadow: 8px 8px 5px rgba(0, 0, 0, 0.25);
  background-color: #a3ffa3;
  padding: 0.1em 0.2em;
}

#flag {
  /* margin-left: 1vw; */
  height: 2.5vh;
}

p#smolDef,
p#locs {
  font-family: "Karma";
  font-weight: 500;
  font-size: 3vh;
  margin-left: 1.5em;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
  /* background-color: #FFF9A6; */
  /* padding: 0.2em; */
}

p#bigDef {
  font-family: "source sans 3";
  font-weight: 300;
  font-size: 3vh;
  margin-left: 10vw;
  margin-top: 2em;
  margin-right: 5vw;
  margin-bottom: 5vh;
  /* text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25); */
}

p#bigDef1 {
  font-family: "source sans 3";
  font-weight: 300;
  font-size: 3vh;
  margin-left: 1.5em;
  margin-top: 2vh;
  margin-bottom: 0;
  /* text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25); */
  margin-right: 6vw;
}

p#pronouns {
  font-family: "karma";
  font-weight: 300;
  font-size: 2em;
  margin-left: 0.5em;
  margin-top: 4.5em;
  margin-bottom: 0;
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.25);
}

span.highlight {
  background-color: #fff9a6;
  padding: 0.1em 0.1em;
}

img#speaker {
  margin-left: 0.5em;
  font-size: 10em;
}

div#contact {
  color: whitesmoke;
  background-color: black;
  /* background-image: url("./gridBG.png"); */
  background-size: cover;
  /* padding-left: 5%; */
  padding-top: 5vh;
  padding-bottom: 3vh;
  /* height: 25vh; */
  width: 100%;
  overflow: hidden;
}

p#want {
  font-family: "solway";
  font-size: 2vw;
  margin-left: 3em;
  width: fit-content;
}

.socFirst {
  height: 1.5em;
  margin-right: 0.5em;
}

a#email {
  text-decoration: none;
  color: whitesmoke;
}

p#connect {
  font-family: "karma";
  padding-left: 5em;
  font-size: 3vh;
  width: fit-content;
  margin-right: 5em;
}

svg {
  margin-left: 2vw;
  height: 5vh;
  width: 5vh;
  color: whitesmoke;
}

span:not(.section-emoji):not(.section-emoji-right) {
  margin-top: -5em;
}
