/* Berkely Mono Font Familiy */
@font-face {
    font-family: BerkeleyMono;
    src: url('https://cdn.thegreydiamond.de/fonts/BerkeleyMonoVariable-Regular.woff2');
}


body {
    color: white;
    background-color: black;
    font-family: BerkeleyMono, sans-serif;
    background-image: url("images/IMG_6549_bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    height: fit-content;
    margin: 0;

    display: flex;
    justify-content: center;
    align-items: center;
}

#main_content {
    backdrop-filter: blur(10px);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.62);
    padding: 20px;
    width: 90%;
    height: fit-content;
    min-height: 90vh;
    margin-top: 2em;
}
#main_title {
margin-bottom: -5px;
}
#main_subtitle {
    margin-top: 0;
    font-weight: lighter;
}

#whatAmIWrapper {
    position: absolute;
    top: .67em;
    right: .67em;
    font-size: larger;
}

#whatAmI {
    font-size: 2em;
}

.typed-cursor {
    opacity: 0 !important;
}

#events {
    border: 1px solid gray;
    border-radius: 5px;
    padding: 8px;
    width: 80%;
    padding-top: 0px;
}

#beta {
    float: left;
    top: 1.5em;
    left: -3em;
    position: absolute; /* or fixed if you want it to always be visible */
    transform: rotate(-45deg);
    background: red;
    color: white;
    font-weight: bold;
    padding-left: 3em;  padding-right: 3em;
    padding-top: .5em;  padding-bottom: .5em;
    border: 0;  margin: 0;
    height: auto;   width: auto;
    z-index: 999999999; /* or whatever is needed to show on top of other elements */
}

#primary_image {
    transition: 0.3s ease-in-out;
    display: grid;
    justify-content: center;
}

#image_attr:hover {
    transform: scale(1.1); /* Increases size by 10% */
}

#img_main {
    max-width: 90%;
    max-height: 70vh;
}

#beta::before {
    content: "⚠️ PREVIEW ⚠️";
}

.split {
    display: flex;
    gap: 2rem;
    width: 100%;
    height: fit-content;
}

.col {
    flex: 1 1 50%; /* 50% width */
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
}

/* Stack on mobile */
@media (max-width: 768px) {
    .split {
        flex-direction: column;
    }
    .col {
        flex: 1 1 100%;
    }
    #main_title {
        padding-top: 1.5rem;
    }
    #primary_image {
        display: none;
    }
    #galleryShowcase {

        height: 90vh;
    }
}

#image_attr {
    position: relative;
    top: 2em;
    color: gray;
    font-weight: lighter;
    text-decoration: none;
    transition: 0.3s ease-in-out;
}

#image_attr :visited {
    color: #7e7070;
}

a {
    color: #62f1ff;
}

.normal_link {
    color: white;
    text-decoration: none;
}

#mysocs {
    font-size: larger;
}

#galleryShowcase {
    border: 0;
    width: 100%;
    height: 30vh;
}

footer {
    font-weight: lighter;
    font-size: small;
    text-align: center;
    position: relative;
    bottom: -3.5em;
}