html {
    scroll-behavior: smooth;
    --scroll-duration: 1.5s;
}

body {
    font-family: "Lucida Console", "Courier New", monospace;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom right, #000000, rgb(8, 2, 20) 70%, rgb(67, 30, 153)),
                linear-gradient(to top right, #000000, rgb(8, 2, 22) 70%, rgb(67, 30, 153));
    background-blend-mode: screen;
    color: #333;
}

header {
    background-color: rgba(0, 0, 0, 0);
    color: white;
    padding: 2em 1em;
    text-align: left;
    position: relative;
    margin-top: 4em;
}

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

.header-image {
    width: 350px;
    height: 550px;
    margin-right: 4em;
    margin-top: 2em;
    object-fit: cover; /* Ensures the image covers the container without stretching */
}

.header-text {
    flex: 1;
    text-align: left;
    margin-left: 3em;
}

header h1 {
    font-size: 5.5em;
    font-family: "Lucida Console", "Courier New", monospace;
    margin: 0;
}

.subtitle {
    font-size: 3.5em;
    font-family: "Lucida Console", "Courier New", monospace;
    width: 90%;
    margin: 0;
}

.scroll-button {
    position:absolute;
    bottom: 20px;
    right: 90%;
    transform: translateX(50%);
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 2em;
    color: rgba(0, 0, 0, 0.795);
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Hover behavior for scroll-button */
.scroll-button:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

h2 {
    bottom: 3em;
    font-size: 3em;
    margin-left: 2.25em;
    font-family: "Lucida Console", "Courier New", monospace;
}

p {
    font-size: 1.25em;
    margin-left: 7.0em;
    font-family: "Lucida Console", "Courier New", monospace;
    margin-right: 4.0em;
}

main {
    padding: 2em;
}

section {
    margin-bottom: 2em;
    padding: 2em;
    background-color: rgba(255, 255, 255, 0);
    color: white;
    backdrop-filter: blur(10px);
    border-radius: 8px;
}

footer {
    background-color: rgba(0, 0, 128, 0);
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 1em 0;
}

nav {
    position: sticky;
    bottom: 0;
    width: 60%;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid white; /* Thin white line border */
    border-radius: 10px; /* Rounded corners */
    padding: 1em 0; /* Add padding to the nav */
    box-sizing: border-box; /* Ensure padding does not affect width */
    text-align: center;
}

.navbar {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0 1em;
}

.navbar li:first-child {
    margin-right: 2em;
}

.navbar a {
    text-decoration: none;
    color: white;
    padding: 0.5em 1em;
    border: 1px solid white;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
}

 /* Styling for skill columns */
.skills-container {
    display: flex;
    justify-content: space-between;
    margin: 2em auto; /* Centering the container */
    width: 80%; /* Making the container narrower */
}

.skill-column {
    flex: 1;
    margin: 0 1em;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    color: white;
    min-width: 200px; /* Ensure columns have a minimum width */
    text-align: center;
}

.skill-column h3 {
    font-size: 2em;
    margin-top:.25em;
    margin-bottom: 0.5em;
}

.skill-column ul {
    list-style-type: none;
    padding: 0;
}

.skill-column li {
    font-size: 1.25em;
    margin-bottom: 0.5em;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
    .skills-container {
        flex-direction: column;
        align-items: center;
    }
    .skill-column {
        width: 80%; /* Increase the width for smaller screens */
        margin-bottom: 1em; /* Add some space between columns */
    }
}

/* Styling for work columns */
.work-container {
    display: flex;
    justify-content: space-between;
    margin: 2em auto; /* Centering the container */
    width: 80%; /* Making the container narrower */
}

.work-column {
    flex: 1;
    margin: 0 1em;
    padding: 1em;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    color: white;
    min-width: 200px; /* Ensure columns have a minimum width */
    text-align: center;
    transition: transform 0.3s; /* Smooth enlarge effect */
    position: relative; /* For positioning the button */
}

.work-column:hover {
    transform: scale(1.05); /* Enlarge the column on hover */
}

.work-column h3 {
    font-size: 2em;
    margin-bottom: 0.5em;
    margin-top:.25em;
}

.work-column p {
    font-size: 1.25em;
    margin-bottom: 0.5em;
    margin-left: .01em;
    text-align: left;
    margin-right: .1em;
}
.explore-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 5px;
    padding: 0.5em 1em;
    cursor: pointer;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s;
}

.explore-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.explore-button span {
    margin-right: 5px; /* Space between text and arrow */
}

.explore-button::after {
    content: '→';
    font-size: 1.25em;
}