:root{
color-scheme: dark light;
}

/* Dark */
@media (prefers-color-scheme: dark){
body{
  color: white;
  background-color: rgb(36,36,40);
}

h1, p, .header, .header ul, a.logo, ul.menu, .header .logo, a.navigation, .header .logo:hover, .header li a:hover,.header .menu-btn:hover, .header .menu-icon .navicon, .header .menu-icon .navicon:after, .header .menu-icon .navicon:before{
  color: white;
}

.header .menu-icon .navicon, .header .menu-icon .navicon:after, .header .menu-icon .navicon:before{
  background: white;
}

.header {
  background-color: rgb(36,36,40);
}

.texthighlight{
  color: #03DAC5;
}
.container {
  border: 3px solid rgb(54,57,58);
  background-color: rgb(54,57,58);
}
a.two{
  color: black;
  
}


}
/* End of dark */

/* Light */
@media (prefers-color-scheme: light){
  body{
    color: black;
    background-color: white;
  }

  h1, p, .header, .header ul, a.logo, ul.menu, .header .logo, a.navigation, .header .logo:hover, .header li a:hover,.header .menu-btn:hover, .header .menu-icon .navicon, .header .menu-icon .navicon:after, .header .menu-icon .navicon:before{
    color: black;
  }
  
  .header .menu-icon .navicon, .header .menu-icon .navicon:after, .header .menu-icon .navicon:before{
    background: black;
  }

  .header {
    background-color: white;
  }

  .texthighlight{
    color: black;
    background-color: #03DAC5;
  }
  .container {
    border: 3px solid #03DAC5;
    background-color: white;
  }
  a.two{
    color: black;
    background-color: #03DAC5;
  }
  
 
  }
/* End of light */

body{
  font-family: Verdana;
  margin: 0;
}

/* Start of navbar */

/* header */

.header {

  position: fixed;
  width: 100%;
  z-index: 3;
}

.header ul {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.header li a {
  display: block;
  padding: 20px 20px;
  text-decoration: none;
}





.header .logo {
  display: block;
  float: left;
  font-size: 1em;
  padding: 20px 20px;
  text-decoration: none;
}

/* menu */

.header .menu {
  clear: both;
  max-height: 0;
  transition: max-height .2s ease-out;
}

/* menu icon */

.header .menu-icon {
  cursor: pointer;
  float: right;
  padding: 28px 20px;
  position: relative;
  user-select: none;
}

.header .menu-icon .navicon {
  /* background: #333; */
  display: block;
  height: 2px;
  position: relative;
  transition: background .2s ease-out;
  width: 18px;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  /* background: #333; */
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}

.header .menu-icon .navicon:before {
  top: 5px;
}

.header .menu-icon .navicon:after {
  top: -5px;
}

/* menu btn */

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  max-height: 240px;
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before,
.header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  top: 0;
}

/* 48em = 768px */

@media (min-width: 48em) {
  .header li {
    float: left;
  }
  .header li a {
    padding: 20px 30px;
  }
  .header .menu {
    clear: none;
    float: right;
    max-height: none;
  }
  .header .menu-icon {
    display: none;
  }
}

/* End of navbar */

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1rem;
  padding-bottom: 2rem;
  width: min(100% - 2rem, 700px);
  margin-inline: auto;
}
h1 {
    font-size: xx-large;
    margin-left: 1rem;
    margin-right: 1rem;
  }
p {
    font-size: x-large;
    margin-bottom: 2em;
    margin-left: 1rem;
    margin-right: 1rem;
    line-height: 1.6;
  }






a.navigation {
    display: inline-block;
    position: relative;
}
  
  a.navigation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #03DAC5;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  a.navigation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  a.logo {
    display: inline-block;
    position: relative;
}
  
  a.logo::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #03DAC5;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
  }
  
  a.logo:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
  }
  

  .toggle-container{
    top:60px;
    position: absolute;
  }

  .moon, .sun{
    cursor: pointer;
  }

 .hidden{
  display: none;
 }

 a.two {
  text-decoration: none;
  font-size: medium;
  padding: 0px 2px;
  border-radius: 25px;
}

.tag-holder{

  display: flex;
  column-gap: 0.5em;
  row-gap: 2em;
  padding-left: 0.7em;
  padding-right: 0.7em;
}




.tag{
  text-align: left;
  font-size: small;
  display: inline-flex;
  border-radius: 1rem;
  padding: 0.5em;
  font-weight: bold;
  background-color: #03DAC5;
  color: black;
}



.linkedin-text{
  font-size: medium;

}   

.linkedin-svg{
  padding-top: 0.5%;
  padding-right: 0.4em;
  padding-left: 0.4em;
} 
