@font-face {
    font-family: 'futura';
    src: url('Fonts/Futura LT W01 Light Oblique.ttf');
}

* {box-sizing:border-box}


html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    height: 100%;
    background-color: black;
    display: grid;
    grid-template: "header"         80px
                   "main-display"   1fr
                   "pic-buttons"    min-content
                   "about-me"       min-content
                   "skills-graphs"  min-content
                   "footer"         300px
                                    / 1fr;
    margin: auto;
}



#header {
    font-family: 'Poppins', 'Merriweather', serif;
    font-size: 17px;
    background-color: #0b0c10;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-area: header;
    color: white;
    border-bottom: 1px solid #66fcf1;
}

#name {
    position: absolute;
    margin-left: 3%;
    color: white;
    font-size: 67px;
    top: 23rem;  
    font-weight: 400;  
    text-shadow: -8px 5px 5px black;                             
 }

 #job-position {
    font-size: 2rem;
    font-family: 'futura', sans-serif;
    font-weight: 400;    
    text-shadow: -5px 5px 5px black;                           
        
 }

#header-links-container {
    display: grid;
    grid-area: 1 / 2;
    font-size: 1.4rem ;
}

#header-right {
    letter-spacing: 7px;
    display: flex;
    justify-content: center;
    list-style-type: none;
}

.links {
    margin-left: 5%;
}

#main-display {
    grid-area: main-display;
    height: 775px;
    position: relative;
}


.pic-container {
    width: 100%;
    height: 775px;
    display: none;
    margin: 0 auto;
}

#vid { 
    object-fit: cover;
  }

  .slide {
    height: 775px;
    max-height: 75%;
    margin-top: 5%;
    margin-left: 50%;
    transform: translate(-50%, 0);
    border: 2px solid gray;
  }

  /* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 17px;
    width: 17px;
    margin: 0.7% 3.5px 0 0;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active, .dot:hover {
    background-color: #66fcf1;
  }

  /* Circle buttons for main display */
  #pic-buttons {
    grid-area: pic-buttons;
}

.tab {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
    border-right: 1.5px solid black;
}

#about-me {
    font-family: 'Heebo', 'Poppins', serif;
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 2.5fr 1.5fr;
    grid-area: about-me;
    background-color: #0b0c10;
    max-width: 100%;
    color: white;
    margin-top: 7%;
    margin-bottom: 7%;
    margin-left: 20%;
    border-radius: 15px;
    box-shadow: -2px 2px 5px 0px gray;
}

h1 {
    width: fit-content;
    height: fit-content;
    font-family: 'Poppins', 'Merriweather', serif;
    grid-area: 1 / 1;
    margin-left: 5%;
    margin-top: 6%;
    font-size: 3rem;
}

#bio {
    grid-area: 1 / 1;
    font-size: 19px;
    line-height: 21px;
    margin-left: 5%;
    align-self: center;
    width: 80%;
    height: 20%;
    margin-bottom: 12%;
}


#headshot {
    grid-area: 1 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

#hs-img {
    max-width: 85%;
    max-height: 65%;
    border-radius: 15px;
  }

  #skills-title {
    display: block;
    color: #f0f0f0;
    width: fit-content;
    height: fit-content;
    margin: 0 0 0 2%;
    
  }
  

#skills-graphs {
    font-family: 'Poppins', 'Merriweather', serif;
    grid-area: skills-graphs;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #0b0c10;
    max-width: 100%;
    color: #0b0c10;
    height: 850px;
    margin-right: 20%;
    border-radius: 15px;
}

#graph-container {
    grid-area: 1 / 1;
    display: grid;
    width: 861.2px;  /* fixxx? */
    height: 850px;
    border-right: 1px solid #66fcf1;
}

#graph {
    display: grid;
    grid-template-rows: repeat(7, 14.2%);
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    height: 100%;
    padding-top: 10%;
}

.bar {
    display: grid;
    background-color: white;
    max-height: 100%;
    max-width: 100%;
    height: 45px;
    align-content: center;
    font-size: 18.5px;
    padding-left: 2%;
    transition: width 0.1 ease;
    border: 4px groove black;
    border-left: none;
}

#java {
    grid-area: 1 / 1 / auto / span 4;
}

#spring {
    grid-area: 2 / 1 / auto / span 4;
}

#sql {
    grid-area: 3 / 1 / auto / span 4;
}

#angular {
    grid-area: 4 / 1 / auto / span 4;
}

#java-script {
    grid-area: 5 / 1 / auto / span 4;
}

#csharp {
    grid-area: 6 / 1 / auto / span 4;
}

#git {
    grid-area: 7 / 1 / auto / span 4;
}

.levels {
    display: flex;
    color: white;
    font-size: 25px;
    width: 100%;
    justify-content: space-evenly; 
}

#beginner {
    grid-area: 7 / 1;
    align-self: end;
    justify-content: end;
    
}

#intermediate {
    grid-area: 7 / 2;
    align-self: end;
    justify-content: end;
}

#advanced {
    grid-area: 7 / 3;  
    align-self: end;
    justify-content: end;  
}

#expert {
    grid-area: 7 / 4;
    justify-content: center;
    align-self: end;
}

#logo-container {
    grid-area: 1 / 2 ;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: repeat(4, 1fr);
    color: white;
    gap: 10%;
    margin: 3rem;
}

.logos {
    align-self: center;
    justify-self: center;
    position: relative;
    width: 50%;
    height: 50%;
    object-fit: fill;
}

#projects-container {
    font-family: 'Heebo', 'Merriweather', serif;
    grid-area: 1 / 2;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #0b0c10;
    max-width: 100%;
    color: white;
    height: 1000px;
    margin-top: 14%;
    margin-bottom: 7%;
    margin-left: 20%;
    border-radius: 15px;
}

.project, .project-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f0f0f0;
    font-size: 13.5px;
    line-height: 22px;
}

#pro-header {
    grid-area: 1 / 1;
    margin-left: 3%;
    margin-top: 0;
    color: #f0f0f0;
    width: fit-content;
    height: fit-content;
}

.pro-imgs {
    max-width: 100%; 
    max-height: 100%;
    border: 1px solid gray;
    width: 35%;
    height: 35%; 
    box-shadow: 0px 5px 30px white;
    border-radius: 5px;
    cursor: pointer;
}

#smartRx-img {
    grid-area: 1 / 3;
    width: fit-content;
    height: fit-content;
    margin-top: 20%;
}


#smartRx-sum {
    display: grid;
    grid-area: 1 / 3;
    align-self: end;
    width: fit-content;
    height: fit-content;
    padding: 0 10% 5% 10%;
    border-bottom: 1px solid #66fcf1;
    text-align: justify;
    word-wrap: break-word;
}

#bash-img {
    grid-area: 2 / 1;
    width: fit-content;
    height: fit-content;
    margin-top: 15%;
}

#bash-sum {
    display: grid;
    grid-area: 2 / 1;
    align-self: end;
    width: fit-content;
    height: fit-content;
    padding: 0 5% 15% 10%;
    text-align: justify;
}

#tictac-img {
    grid-area: 2 / 2;
    width: fit-content;
    height: fit-content;
    margin-top: 15%;
}

#tictac-sum {
    display: grid;
    grid-area: 2 / 2;
    align-self: end;
    padding: 0 10% 8% 12%;
    /* text-align: justify; */
}

#wayfarer-img {
    grid-area: 1 / 2;
    width: fit-content;
    height: fit-content;
    margin-top: 20%;
}

#wayfarer-sum {
    display: grid;
    grid-area: 1 / 2;
    align-self: end;
    text-align: justify;
    word-wrap: break-word;
    padding: 0 12% 8% 12%;
    border-bottom: 1px solid #66fcf1;

}

#unity-img {
    grid-area: 2 / 3;
    width: fit-content;
    height: fit-content;
    margin-top: 15%;

}

#unity-sum {
    display: grid;
    grid-area: 2 / 3;
    align-self: end;
    padding: 0 10% 6% 12%;
    text-align: justify;
    margin-bottom: 15%;
}

#find-go-img {
    grid-area: 1 / 1;
    width: fit-content;
    height: fit-content;
    margin-top: 20%;
}

#find-go-sum {
    display: grid;
    grid-area: 1 / 1;
    align-self: end;
    padding: 0 12% 8% 12%;
    text-align: justify;
    border-bottom: 1px solid #66fcf1;
}


#footer {
    font-family: 'Poppins', 'Merriweather', serif;
    grid-area: footer;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background-color: #0b0c10;
    margin-top: 10%;
    height: 440px;
}

.footer-titles {
    font-family: 'Poppins', 'Merriweather', serif;
    margin-top: 3.0%;
    margin-left: 5%;
    margin-bottom: 0px;
    color: white;
    width: fit-content;
    height: fit-content;
    border-bottom: 1px solid #66fcf1;
    font-size: 40px;
}

.follow {
    margin-left: 0;
}

#form {
    grid-area: auto / 1;
    width:fit-content;
    margin-left: 5%;
}

input[type=text], input[type=email] {
    font-family: 'Poppins', 'Merriweather', serif;
    display: flex;
    width: 352px;
    height: 32px;
    margin-bottom: 3.5%;
    border-radius: 5px;
}

textarea {
    font-family: 'Poppins', 'Merriweather', serif;
    width: 352px;
    height: 150px;
    border-radius: 5px;
}

button {
    display: flex;
    font-family: 'Poppins', 'Merriweather', serif;
    width: 100px;
    height: 30px;
    margin-top: 2%;
    font-size: 16px;
    justify-content: center;
}


#footer-list {
    letter-spacing: 1px;
    margin-top: 33px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    list-style-type: none;
}

.follow {
    grid-area: 1 / 2;
    align-self: center;
    justify-self: center;
    margin-bottom: 1.4%;
}

.logo-container {
    display: flex;
    justify-content: center;
}

.social-media {
    width: 125px;
    margin-top: 30%;
    background-color: #0b0c10;
}

.github {
    grid-area: 2 / 2;
    justify-self: center;
    border-radius: 60%;
    margin-right: 25px;
}

.linkedin {
    grid-area: 2 / 2;
    justify-self: center;
    border-radius: 100%;
    margin-left: 30px;
}

#resume-container {
    grid-area: 2 / 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: 40%;
    margin-top: 4%;
    font-size: 40px;
    list-style-type: none;
    width: fit-content;
    height: fit-content;
    border-bottom: 1px groove #66fcf1;
    background-color: black;
    border-radius: 100%;
    box-shadow: 0 0 40px 13px #66fcf1;
}

.resume-text {
    -webkit-text-stroke: 1px black;
}

.logo-link, a:link {
    width: 125px;
    height: 125px;
}
  
  .logo-link img {
    display: block;
    width: 125px;
    height: 125px;
  }

#header-right a:link, #resume-container a:link {
    color: white;
    padding-left: 5px;
    padding-right: 5px;
    background-color: transparent;
    text-decoration: none;    
  }

#header-right a:visited, #resume-container a:visited {
    color: white;
    text-decoration: none;
}

@media (max-width: 2068px) {
    #bio {
      line-height: 27px;
    }
  }
  
  @media (max-width: 1780px) {
    #bio {
      line-height: 21px;
    }

    /* body {
        background-color: rebeccapurple;
    } */
  }



  
