/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
    cursor: auto;
}

body {
    line-height: 1.6;
    font-size: 18px;
    color: #333;
    background-color: #252525;
    padding-bottom: 250px;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

#main_body{
    color:#f4f4f4;
    background-color: #252525;
}



/* Image section */
.image-container {
    float: none;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
    width: 200px;
    height: 200px;
    overflow: visible;

}

.image {
    position: absolute;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    opacity: 1;
    transition: opacity 2s ease-in-out;

    /* Centering the image */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.image-2 {
    opacity: 0;
}

.image-container:hover .image-1 {
    opacity: 0;

}

.image-container:hover .image-2 {
    opacity: 1;
    cursor: pointer;
}



/* Header */
header {
    background-color: #000000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    white-space: pre;
    margin-top: -35px;
    font-size: min(1.2vw, 20pt);
    line-height: 1.35;
    cursor: default;
}

header p {
    font-size: 15pt;
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul a {
    color: #fff;
    text-decoration: none;
}

nav ul a:hover {
    text-decoration: underline;
    cursor: pointer;
}

.download a {
    cursor: pointer;
}


/*Main Sections */
@media (min-width: 450px){
    .link_bar {
        white-space: pre;
        text-align: center;
        line-height: 1;
        margin-top: -20px;
        font-size: 18px;

    }
}


@media (max-width: 449px){
    .link_bar {
        white-space: pre;
        text-align: center;
        line-height: 1;
        margin-top: -20px;
        font-size: 15px;

    }
}

.typewriter {
    display: inline-block;
    overflow: hidden; /* Ensures the content is not revealed until the animation */
    border-right: .15em solid #207733; /* The typewriter cursor */
    white-space: nowrap; /* Prevents text from wrapping */
    position: absolute; /* Removes it from the document flow */
    left: 50%; /* Center the effect */
    transform: translateX(-50%); /* Adjust position for centering */   
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #207733; }
}

@keyframes hide-caret {
    0% { border-color: #207733; }
    100% { border-color: transparent; }
}

