html,
body {
  overflow: scroll;
  overflow-x: hidden;
  margin: 0;
  width: 100vw;
  height: 100vh;
}

html {
  height: 100%;
  width: 100%;
}

:root {
  --clr-1: #4e6743;
  --clr-2: #24301f;
  --clr-3: #b1c4ac;
  --clr-4: #ffffff;
}

body{
  background-color: var(--clr-1);
  font-family: "Inter", sans-serif;
  margin-left: 2%;
}

h1{
  color: var(--clr-4);
  font-weight: 340;
letter-spacing: 2.5px;
font-size: 60px;
}

h2{
  color: var(--clr-4);
  font-weight: 330;
  font-size: 45px;
  letter-spacing: 2px;
}

h3{
  color: var(--clr-4);
  font-weight: 300;
  font-size: 20px;
}

body p{
  color: var(--clr-4);
    font-weight: 300;
    font-size: 18px;
}

::-webkit-scrollbar {
  display: none;
}

a:link {
  text-decoration: none;
  color: var(--clr-4);
}

a:hover {
  color: var(--clr-4);
  }

a:visited {
  color: var(--clr-4);
  }

mark {
  background-color: var(--clr-2);
  color: white;
  padding: 5px;
}

nav {
  margin-left: -2.5%;
  position: fixed;
  text-align: right;
  z-index: 1;
}

nav img{
  width: 18px;
}

li {
  display: block;
  margin: 0px 0px 0px 0px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  padding: 30px 0px 0px 0px;
}

.image-panel{
  width: 380px;
  padding-left: 5%;
  float: right;
}

.image-panel img{
  width: 100%;
}

.contact {
  padding: 1.5%;
  padding-left: 3%;
  text-align: left;
  bottom: 0;
  position: relative;
  overflow: hidden;
}

.contact p{
  color: var(--clr-4);
  font-size: 15px;

}

.contact-icons {
  position: absolute;
  bottom: 1.5%;
  right: 4%;
  display: flex;
  gap: 10px;
}

.contact-icons img {
  height: 30px;
}

.howtoimage{
  margin: 50px;
}

.howtoimage img{
  text-align: center;

}