header {
    float: right;
    margin-top: 2vh;
    margin-right: 5vw;
}

body{
    background-color: rgb(31, 31, 31);
}

.background_img {
    top: 0;
    left: 0;
    position: absolute;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25); /* Adjust the opacity (0.5) to control darkness */
}

.image{
    width: 100vw;
}

.content {
    left: 0;
    position: absolute;
    width: 100vw;
}

.content_main {
    position: relative;
    float: center;
    text-align: center;
    margin-top: 30vh;
}

.profile_img {
    border-radius: 50%; /* Create a circular border radius */
    overflow: hidden; /* Hide any content that overflows the circular boundary */
}

#text_name {
    color: #fff;
    font-family: Tahoma, sans-serif;
    font-size: 4vw;
}

#text_title {
    color: #fff;
    font-family: Tahoma, sans-serif;
    font-size: 2.5vw;
    font-style: italic;
}


nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    font-family: Tahoma, sans-serif;
    font-size: 1.3vw;
    font-style: bold;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    padding: 8px 16px;
    transition: background-color 0.3s;
}

.nav-links li a:hover {
    background-color: #575757;
    border-radius: 4px;
}

/* Style for the transparent black overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Transparent black */
    z-index: 500; /* Just behind the navigation menu */
    display: none; /* Hidden by default */
}

/* Show the overlay when active */
.overlay.active {
    display: block;
}

.hamburger {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

@keyframes flash {
    0% { opacity: 0.5; }
    50% { opacity: 0.2; }
    100% { opacity: 0.5; }
}

.move_south {
    position: relative;
    float: center;
    text-align: center;
    margin-top: 20vh;
    animation: flash 1.3s infinite;
}

.text_move_south {
    color: #fff;
    font-family: Tahoma, sans-serif;
    font-size: 2vw;
}

.hidden {
    display: none;
}

.about_me {
    position: relative;
    float: center;
    text-align: center;
    margin: auto;
    margin-top: 20vh;
    width: 90vw;
    padding-bottom: 4vh;
    background-color: rgba(0, 0, 0, 0.5)
}

.about_me_header {
    color: #fff;
    font-family: Tahoma, sans-serif;
    font-size: 2vw;
    padding-top: 3vh;
}

.about_me_p {
    color: #fff;
    font-family: Tahoma, sans-serif;
    font-size: 1.3vw;
    text-align: left;
    margin-top: 2vh;
    padding-left: 5vw;
    padding-right: 5vw;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.fadeInUp-animation {
    animation: 1.5s fadeInUp;
}

/* Extra small devices (phones, < 576px) */
@media only screen and (max-width: 575px) {
    .image{
        width: 100vw;
        height: 130vh;
    }

    #text_name {
        color: #fff;
        font-family: Tahoma, sans-serif;
        font-size: 8vw;
    }
    
    #text_title {
        color: #fff;
        font-family: Tahoma, sans-serif;
        font-size: 5vw;
        font-style: italic;
    }

    .text_move_south {
        color: #fff;
        font-family: Tahoma, sans-serif;
        font-size: 4vw;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 10vh;
        right: 0;
        /*background-color: #333;*/
        width: 100%;
        height: auto;
        text-align: center;
        font-size: 10vw;
        z-index: 999;
    }

    .hamburger {
        display: block;
        z-index: 750;
    }

    .nav-links.active {
        display: flex;
    }

    .about_me_header {
        font-size: 6vw;
    }
    
    .about_me_p {
        font-size: 4vw;
    }
}

/* Small devices (phones in landscape, 576px and up) */
@media only screen and (min-width: 576px) {
    /* Your CSS here */
}

/* Medium devices (tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    /* Your CSS here */
}

/* Large devices (desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    /* Your CSS here */
}

/* Extra large devices (large desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    /* Your CSS here */
}