html{
    background-color: black;
    background-image: url("./media/landingBG.png");
    background-size:cover;
    background-attachment: fixed;
    height:100%;
    margin:0px;
    color:white;
    text-align: center;
    padding:0px;
}
body{
    display:flex;
    align-items: center;
    flex-direction: column;
    margin: 0px;
}
#intro{
    display:flex;
    flex-direction: row;
    gap:15px;
    margin-top:50px;
}
#links{ margin-bottom: 5px; }
button,a{
  background-color: black;
  border: 2px solid white;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  border-radius: 20px 20px;
  font-size: 16px;
  cursor: pointer;
}
a{max-width:200px;}
button:hover,button:active,a:hover,a:active{
    background-color: rgb(60, 18, 96);
      border: 2px solid rgb(186, 126, 255);
}
#intro>img{
    width:200px;
    height:200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom:20px;
}
#sections{
    width:100%;
    height:100%;
}
hr{
    color:white;
    height:1px;
    width:50%;
}
.custom-divider{
    width:20%;
}
.quick-details{
    display:flex;
    flex-direction: column;
}
.desc>*{
    text-overflow:clip;
    text-align: left;
}
.desc{
    margin-bottom:auto;
}
h2{
    font-size: 14px;
}
#Projects,#About{
    gap:20px;
    display:flex;
    flex-direction: column;
}
#About{
    flex-direction: row;
    gap:25px;
    justify-content: center;
    align-items: center;
}
#About>*{
    margin:0px;
    max-width:500px;
}
.VerticalDivider{
    width:0px;
    height:300px;
    border-right: 1px solid white;
}
.projectimg{
    max-height:400px;
    max-width:400px;
    border-radius: 20px 20px;
}
.wrapper{
    display:flex;
    align-items: center;
    gap:25px;
    min-height:225px;
    /* min-width:100px; */
    /* max-width:fit-content; */
    margin-left: auto;
    margin-right: auto;
    width:fit-content;
    max-width:1000px;
    flex-direction: row;
}
@media (max-aspect-ratio:1/1) {
    .wrapper{
        flex-direction: column;
    }
    #About{
    flex-direction: column;
    }
    .VerticalDivider{
        height:0px;
    }
}
@media (min-aspect-ratio:1/1) {
    .wrapper{
        flex-direction: row;
    }
    #About{
    flex-direction: row;
    }
}
@media (aspect-ratio:1/1){
    .wrapper{
        flex-direction: column;
    }
    #About{
    flex-direction: column;
    }
    .VerticalDivider{
        height:0px;
    }
}
.panel{
    display:flex;
    flex-direction: column;
    background-attachment: fixed;
    background-position: center;
    background-repeat: repeat-y;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.8);
    background-blend-mode: color-burn;
    padding-bottom:40px;
    /* width:fit-content;
    margin-left:auto;
    margin-right:auto;
    border-radius: 20px 20px; */
}
@keyframes scrollingBG {
    0% {background-position: 0 0;}
    100% {background-position: -100% 0;}
}
h3{
    color:rgb(102, 102, 102);
}
a{
    width: 100%;
}

.project-media{
    display:flex;
    justify-content: right;
}
.projectimg{
    margin-left:auto;
    margin-right: 0px;
    align-self: right;
}
div#ThreeDArt>img,div#TwoDArt>img{
    height:200px;
    width:auto;
    border-radius: 20px 20px;
}
.image-showcase{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap:5px;
}
#fullscreenimage{
    margin-left: auto;
    margin-right: auto;
    margin-bottom:auto;
    margin-top:auto;
    /* min-height:fit-content;
    /* min-width: fit-content; */
    /* max-width:fit-content; */
}
.landscape-image{
    max-width:100vw;
    width:auto;
    height:auto;
    max-height:100vh;
}
.portrait-image{
    max-height:100vh;
    height:100%;
    width:auto;
}

/* @media (max-aspect-ratio:1/1) {
    #fullscreenimage{
        width:100vw;
        height:fit-content;
    }
}
@media (min-aspect-ratio:1/1) {
    #fullscreenimage{
        max-width:fit-content;
        height:auto;
    }
}
@media (aspect-ratio:1/1){
        #fullscreenimage{
        max-width:fit-content;
        height:auto;
    }
} */
#fullscreen{
    width:100vw;
    height: 100vh;
    position:fixed;
    background-color: rgba(0, 0, 0, 0.515);
}