html {
    overflow-y: scroll;
}

body {
  background-color: #1e1c2e;
  margin: 0;
}
#main-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

#art {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 600px;
    container-type: inline-size;
}

#art-splashlogo {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 5%;
}

#art-footersplash {
    position: relative;
    z-index: 1;
    text-align: left;
    width: 12%;
    padding-left: 3%;
    padding-top: 2%;
    float: left;
}

#text {
    position: relative;
    font-size: 22px;
    font-family:'Segoe UI';
    line-height: 1.5;
    color: #ffffff;
    filter: drop-shadow(0px 3px 3px #000000);
    text-align: center;
    margin-top: 2%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#footer-block {
    width: 100%;
    font-size: 20px;
    background-color: #0c0b11;
    filter: drop-shadow(0px 3px 3px #000000);
    font-family:'Segoe UI';
    line-height: 1.2;
    color: #ffffff;
    text-align: right;
    margin-top: 30%;
    font-family:Helvetica, sans-serif;
    position: sticky;
    bottom: 0%;
}

#footer-block-art {
    width: 100%;
    font-size: 20px;
    background-color: #0c0b11;
    filter: drop-shadow(0px 3px 3px #000000);
    font-family:'Segoe UI';
    line-height: 1.2;
    color: #ffffff;
    text-align: right;
    margin-top: 2%;
    font-family:Helvetica, sans-serif;
    position: sticky;
    bottom: 0%;
}

#footer-text {
    padding-right: 4%;
    font-size: 14px;
    display: inline-block;
}

#mail-link {
    color: #747474;
    font-size:12px;
    text-decoration: none;
}

h3 {
    font-size: 30px;
    line-height: 1;
    text-decoration: wavy underline #5FA4F4;
}

.subtext {
    font-size: 18px;
    font-style: italic;
    opacity: 70%;
}

.highlight {
    text-decoration: dotted underline #5FA4F4;  
    text-decoration-thickness: 3px;
}

.button-wrapper {
    float: right;
    width: 100%;
    filter: drop-shadow(0px 3px 3px #000000);
    transition: margin-left 0.1s ease 0.1s;
    transition-delay: 0s;
    transform-origin: 0px 90px;
    transform: scale(1);
}

.button-wrapper:hover {
    margin-left: 20px;
    transform-origin: 0px 90px;
    transform: scale(1.02);
}

#button-art {
    position: absolute;
    right: 8%;
    width: 50%;
    text-align: right;
}

#button-art-icon {
    position: absolute;
    right: 46%;
    margin-top: 1.4%;
    width: 14%;
    z-index: 5;
    pointer-events: none;
}

#art-collage {
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    display: block;
}

#flex-art-container {
    display: flex;
    width: 100%;
    height: 100%;
    gap: 80px;
}
#art-shark {
    flex: 1;
    width: 60%;
    height: 60%
}

#art-column {
    display: flex;
    flex-direction: column;
    width: 33.4%;
}

#art-nickit {
    position: relative;
    text-align: center;

}

#art-wooper {
    position: relative;
    text-align: center;

}

#art-maushold {
    position: relative;
    text-align: center;

}

#art-constructionbar {
    margin-top: 5%;
}

.h4 {
    line-height: 0.2;
}

.text-caption {
    font-size: 12px;
    font-style: normal;
    opacity: 80%;
}

#back-to-top{
    position: relative;
    font-size: 22px;
    font-family:'Segoe UI';
    color: #ffffff;
    filter: drop-shadow(0px 3px 3px #000000);
    text-align: center;
    margin-top: 20%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-decoration: wavy underline #5FA4F4;
}

/* navbar stuff */

.navbar {
    font-family:'Segoe UI';
    display: flex;
    text-shadow: -1px 1px 5px #000000;
    padding: 0px;
    margin-top: 2%;
    
}

.navbar-right {
  margin-left: auto;
  display: flex;
}

#navbar-left {
    justify-content: flex-start;
}

.navbar a,
.navbar .dropbtn {
    color: white;
    padding: 14px 20px;
    text-decoration: none;
    display: block;
}

.navbar a:hover,
.navbar .dropdown:hover .dropbtn {
    background-color: #3b3d5841;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #3b3d5841;
    backdrop-filter: blur(4px);
    text-shadow: -1px 1px 5px #000000;
    min-width: 100%;
    z-index: 1;
    top: 100%;
    left: 0;
    text-align: right;   
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    text-decoration: solid underline #5FA4F4;
}

.dropdown:hover .dropdown-content {
    display: block;
}

#computer-guy {
    transition: transform 0.3s ease;
}

#computer-guy:hover {
    transform: scale(1.1);
}