/* General Styles */

.about-me {
    color: #333; /* Softer dark color for readability */
    font-size: 20px;
    width: 100%;
    font-family: cursive, sans-serif; /* Fallback font added */
    box-sizing: border-box; /* Ensures consistent width calculation */
}

h2{
    color:black;
    text-align: center;
}



nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
}

.main-content {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background-color: orange ;
}
pre {
    font-size:14px;
    width: 75%;
    border:5px solid black
}
article {
    text-align:center;
    border:5px solid black;
    border-radius:5%;
    flex: 1;
    margin: 0 10px;
}

.social-media {
    text-align: center;
    padding: 1rem;
    background-color:gray;
}

.social-media img {
    width: 40px;
    margin: 0 10px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    background: #fff;
    color: #333;
    padding: 0.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .main-content {
        flex-direction: column;
    }

    nav a {
        display: block;
        margin: 5px 0;
    }
}
