body {
    background-color: rgb(32, 32, 32);
    color: rgb(255, 255, 255);
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure the body covers the full viewport height */
}

.azeret-mono {
    font-family: "Azeret Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.header-content {
    display: grid;
    grid-template-columns: auto 40%; /* Single column by default */
    gap: 20px; /* Spacing between elements */
    padding: 20px;
    width: 100%;
    flex: 1; /* Fill remaining space */
}

.github img {
    height: 100px;
    width: 100px;
}

.text-content {
    padding: 5%;
    font-size: 25px;
    text-shadow: rgb(151, 151, 151) 1px 0 3px;
}

.img-header {
    position: fixed;
    top: 0%;
    bottom: 0%;
    right: 0%;
    width: 50%;
    box-shadow: rgba(255, 255, 255, 0.181) 20px 20px 20px 20px;
}

.contact {
    border: 1px white solid;
    padding: 10px 20px;
    border-radius: 5px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    position: fixed;
    bottom: 10%;
    left: 5%;
}

.contact:hover {
    background-color: #444;
}

@media screen and (max-width: 761px) {
    .header {
        grid-template-rows: auto auto; /* Two columns for larger screens */
        align-items: center; /* Align items vertically in the center */
    }
    .header-content{
        margin-top: 8%;
    }
    .text-content {
        font-size: 18px;
        text-shadow: rgb(151, 151, 151) 1px 0 3px;
    }
    .contact {
        border: 1px white solid;
        padding: 10px 20px;
        border-radius: 5px;
        color: white;
        font-size: 20px;
        text-decoration: none;
        position: fixed;
        bottom: 52%;
        left: 5%;
        font-size: 18px;
    }
    .img-header {
        position: fixed;
        top: 50%;
        bottom: 0%;
        left: 0%;
        width: 100%;
        box-shadow: rgba(255, 255, 255, 0.181) -20px -10px -10px -20px;
    }
}
