@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700&display=swap");

/* ----------------------------------------- Variable Start */
:root {
  --color-primary-0: #cce5ff;
  --color-primary-1: #aad4ff;
  --color-primary-2: #80bfff;
  --color-primary-3: #55aaff;
  --color-primary-4: #2b94ff;
  --color-primary-5: #007fff;
  --color-primary-6: #006ad4;
  --color-primary-7: #0055aa;
  --color-primary-8: #004080;
  --color-primary-9: #002a55;
  --color-primary-10: #001933;

  --color-neutral-white: #fff;
  --color-neutral-0: #eff0f2;
  --color-neutral-1: #e4e6e9;
  --color-neutral-2: #d6dade;
  --color-neutral-3: #c8ced3;
  --color-neutral-4: #bbc1c8;
  --color-neutral-5: #adb5bd;
  --color-neutral-6: #90979d;
  --color-neutral-7: #73797e;
  --color-neutral-8: #575b5f;
  --color-neutral-9: #3a3c3f;
  --color-neutral-10: #232426;
  --color-neutral-black: #131314;

  --tablet-min-width: 768px;
  --desktop-min-width: 1025px;
  --container-max-width: 1280px;
  --content-container-max-width: 1000px;
}

/* ----------------------------------------- Variable End */
/* Header Stuff */
  nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
  }

  .navbar_contents a:link{
    color: rgb(54, 231, 0);
    text-decoration: none;
  }

  .navbar_contents a:hover{
   color: rgb(47, 172, 229);
  }

  .navbar_contents a:visited{
    text-decoration: none;
  }

html,
body {
  font-family: ibmplexserif-bold;
  scroll-behavior: smooth;
  font-family: "Verdana", sans-serif;
  font-weight: 500;
  background-color: var(--color-neutral-white);
  color: var(--color-neutral-black);
}

/* This is the parent element that centers all stuff nested within!*/
.content-container{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

header.header {
  display: flex;
  flex-direction: column;
  /* Padding is x axis, y axis*/
  padding: 1rem 4rem;
  gap: 1rem;
}

header.header nav ul {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-left: 0;
  flex-wrap: wrap;
}

.styledbutton {
  border-radius: 4rem;
  background-color: var(--color-primary-5);
  color: var(--color-neutral-white);
  border: none;
  padding-left: 1rem;
  padding-right: 1rem;
  height: 2.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.25s;
}

.styledbutton:hover {
  text-decoration: none;
  background-color: rgb(54, 231, 0);
   color: rgb(47, 172, 229);
  transform: translateY(-0.1em);
}

/* Space means elements of a nested WTHIN elements of the "socials" class get affected*/
.socials a {
  background-color: var(--color-neutral-0);
  color: var(--color-neutral-black);
}

/* Means elements that are ul with the class name "social" get affected*/
ul.socials{
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Header End */
main {
  padding-top: 9rem;
  padding-bottom: 9rem;
  padding: 9rem 9rem;
}

h1, h2 {
  font-weight: 700;
  line-height: 125%;
}

h1 {
  font-size: 4rem;
  text-align: center;
}

h2 {
  font-size: 2rem;
  padding-left: 5rem;
}

.socials ul {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
}

/* .hero{
  width: 80%;
  height: 450px;
  position: relative;
  margin: 20px auto;
  animation: 3s fadeInUp;
} */

.btn-box{
  display: flex;
  margin-bottom: 20px;
}

.btn-box button{
  display: flex;
  background: transparent;
  outline: none;
  border: none;
  cursor: pointer;
  padding: 14px 16px;
  margin-right: 50px;
  font-size: 20px;
  font-weight: bold;
}

.btn-box .fa{
  margin-right: 20px;
}

.btn-box button:hover{
color: rgb(47, 172, 229);
}

.content-right img{
  width: 350px;
}

.content{
  display: flex;
  justify-content: center;
  text-align: center;
  margin: 5% auto;
  /* position: absolute will overlap all the different possible tab contents. */
  position: absolute;
  transform: translateX(100%); 
}

.content-left{
  flex-basis: 50%
}

.content-left p{
  font-size: 13px;
  padding: 30px 0;
}

.content-left a{
  width: 150px;
  display: block;
  padding: 8px 5px;
  border-radius: 20px;
  text-decoration: none;
  background-color: #ff7846;
  color: #fff;
  text-align: center;
}
.content-right{
  flex-basis: 50%;
  text-align: center;
}

#content1{
  transform: translateX(0px);
}

.container {
  width: 500px;
  height: 300px;
  display: flex;
  position: relative;
}

input {
  display: none;
}
.testingcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  background: lightgray;
  border-radius: 25px;
}

.tabs {
  width: 33.3%;
  display: flex;
  flex-direction: column;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.05);

}

.tabs__toggle{
  display: flex;
  width: 33.3334%;
  height: 50px, 100px;
  align-items: center;
  justify-content: center;
  background:orange;
  cursor: pointer;
}

.tabs__toggle:hover{
  transition: transition 0.25s;
}
.tabs__toggle.is-active{
  display:flex;
  background: rgb(54, 231, 0);
  border-radius: 25px;
  color: rgb(47, 172, 229);
}

.interests_section {
  width: 80%;
  height: 450px;
  position: relative;
  margin: 20px auto;
  animation: 2s fadeInUp;
}
.interests_header {
  padding-bottom: 20px;
}

.tabs__content{
  padding:30px;
  display: none;
}

.tabs__content.is-active {
  display: block;
  border-radius: 25px;
  animation-name: interestsFadein;
  animation-duration: 5s;
}

.tabs__title {
  font-size: 18px;
  color: black;
  font-weight: bold;
  margin-bottom: 20px;
}

.tabs__text {
  font-size: 14px;
  color: black;
}

#header {
  animation: 1.5s fadeInUp;
}

.about_me_section {
  animation: 2s fadeInUp;  
}

.about_me_profile_pic {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.profile_pic{
  /* originally width: 150px height: 450px*/
  border-radius: 10px;
}

.pics {
  display: flex;
  flex-direction: column;
}

.portraits_and_links_about_me {
  animation: 2s fadeInUp;
}
.about_me_header {
  padding-bottom:20px;
}

@keyframes interestsFadein {
  0%   {background-color: lightgray;}
  100%  {background-color: lightgray;}
}
/* 2048 3072
/4 = 512 / 768

/32 = 64 / 96
/4 = 16 / 24
/8 = 2/3

/1024 = 2/3  */

@keyframes fadeInUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}