/* . is a class and # is an id */

.html {
    scroll-behavior: smooth;
}

.body {
    background-color: rgba(9,10,12,255);
    margin: auto;
}

#stub {
    overflow: hidden;
}

#display {
    height:400px;
    width:350px; 
    margin-inline: .3vw;
    margin-bottom: .9vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition:all .5s ease;
    transform: rotate(9deg);
    -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
    filter: grayscale(100%);
    background-size: 75%;
    opacity: 50%;
}

#display:hover {
    transform: scale(1.02);
    opacity: 100%;
    transition:all .5s ease;
    filter: grayscale(0%);
    background-size: 75%;
}

#display h1 {
    opacity: 0%;
    background-color: black;
}

#gfg {
    text-decoration: none;
    color: inherit;
    
}

#display:hover h1 {
    opacity: 100%;
    margin-left: 10px;
    transform: scale(1.02);
    transition:all .5s ease;
    transition:opacity 2s ease;
}

#display a {
    width: 100%;
    height:100%;
    position: absolute;
}

#introbar {
    height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("photo.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: rgba(34, 34, 34, 0.932);
    background-blend-mode: darken;
}

#hoverbar {
    width:10%;
    position: relative;
    color:rgb(100, 100, 100);
    text-align: center;
    transition:color 1s ease;
    font-size: 3vh;
    top: 20px;
    display: flex;
    cursor: pointer;
    margin-inline: 5vw;
}

#hoverbar a {
    position: relative;
    font-size: 3vw;
}

#hoverbar:hover {
    color:white;
}

#speci {
    cursor: pointer;
    font-weight: normal;
}

#hrz {
    width: 90%;
    height: 3px;
    background-color: gray;
    border: 0px;
}

.tag {
    opacity: 100%;
    transition: all 1s;
}

.tag:visible {
    opacity: 100%;
}

/* Scrollbar Don't Edit */
::-webkit-scrollbar {
    width: 10px;
}

/* Scroll button */
::-webkit-scrollbar-thumb {
    background-color: rgb(70, 70, 70);
    background-clip: content-box;
}

/* Scroll button on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: white;
}


/* Track */
::-webkit-scrollbar-track {
    border-radius: 10px;
  }