@import url("font.css");
@import url("pos.css");
@import url("type.css");
@import url("image.css");

:root {
  --prim: #163b29;
  --light-prim: #30825c;
  --lighter-prim: #3ea875;
  --dark-prim: #0b2f1c;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-size: 24px;
    overflow-x: hidden; /* Prevent horizontal overflow */
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
}

a:link {
  color: var(--light-prim);
  background-color: transparent;
}

a:visited {
  color: var(--prim);
  background-color: transparent;
}

a:hover {
  color: var(--lighter-prim);
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: var(--dark-prim);
  background-color: transparent;
  text-decoration: underline;
}

#cy {
    margin-left: -20px;
    width: 100vw;
    height: 70vh;
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0);
}

#main-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    width: 85%;
    max-width: 100vw; /* Ensure it doesn't exceed viewport width */
    backdrop-filter: blur(1.5px);
    box-shadow: 5px 16px 32px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.5);
    padding: 50px;
    z-index: 9999;
}



#photo-desc {
    margin-right: 10%;
    width: 50%;
}

.flex-center-spaced {

    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.centered {
    margin-right: auto; 
    margin-left: auto;
}

.flex-center-tight {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: flex-end;
}

.hidden {
    opacity: 0;
}

.hidden-manual {
    display: none;
    
}


.hidden-manual-transition {
    display: none;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}


.custom-bullet {
    margin-left: 20px;
}

h3.margin {
    margin-bottom: -10px;
}



@media (max-width: 768px) {
    .flex-center-tight {
        flex-direction: column !important;
        align-items: center; /* Align items to the start in column layout */
        width: 100%;
    }

    .flex-center-spaced {
        flex-direction: column !important;
        align-items: flex-start; /* Align items to the start in column layout */
        width: 100%;
    }

    #main-content {
        width: 90%;
        padding: 20px; /* Adjust padding for smaller screens */
    }

    #photo-desc {
        margin-right: 0%;
        width: 100%;
        margin-bottom: 30px;
    }

    #main-content {
        position: absolute;
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }

}


