body, html {
    margin: 0;
    font-family: sans-serif;
    background-color: hsl(240, 10%, 10%);
    color: hsl(198, 25%, 74%);
}

body{
    font-size: 100%;
    margin: 0 5%;
}

@media (min-width: 1000px) {
    body {
        align-content: center;
        max-width: 1000px;
        font-size: 100%;
        margin: 0 auto; /* Center horizontally */
        /* text-align: center; /* Optional: center the text too */
    }
}

h1{
    text-align: center;
    font-size: 3em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    margin-bottom: 10px;
}

h2{
    font-size: 2em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    border-bottom: 2px solid hsl(256, 50%, 50%); /* Adjust thickness and color */
    padding-bottom: 5px; /* Optional: adds space between text and line */
    display: block;
    width: 50vw;
    margin-bottom: 5px;
    /* max-width: 100vw; */
}

h3{
    font-size: 1.5em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1);
    border-bottom: 2px solid hsl(256, 5%, 50%); /* Adjust thickness and color */
    padding-bottom: 5px; /* Optional: adds space between text and line */
    display: inline-block; /* Keeps the underline only under the text */
    width: 33vw;
    margin-bottom: 1px;
    /* max-width: 100vw; */
}

h4{
    font-size: 1.25em;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.95);
}

p{ /* regular text */
    font-size: 1em;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
    margin-bottom: 0;
}

a{ /* hyperlinks */
    display: inline-block;
    padding: 1px 1px;
    background-color: hsl(300, 50%, 27%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 1);
}

img{
    vertical-align: middle;
    border-radius: 5px;
}