@import url('https://fonts.googleapis.com/css2?family=Jersey+20&display=swap');

/* Reset all elements to use border-box sizing */

* {
    box-sizing: border-box;
}


body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0;
}


html{
  margin: 0;
  padding: 0;
}

/* Paragraph and list styling*/
p, ul, ol {
    font-size: 20px;
    line-height: 30px;
}

ul, ol {
    padding: 0;
    list-style-position: inside;
    margin-bottom: 1rem;
}

/* Link colors*/
a{
    color:rgba(249, 1, 1, 0.978);
}

a:hover{
    color:rgb(74, 74, 229);
}

a:active{
    color:rgb(133, 35, 226);
}

a:visited{
    color:rgb(25, 25, 188);

}

/* Caption under images */
p.caption {
    font-size: 16px;
    color: rgb(34, 19, 1);
    font-style: oblique;
    margin: 0;
}

/* Header styling */
header {
    width: 100%;
    text-align: center;
    background-image: url('../img/blue-backenhancedfilter.jpg');
    /*background: linear-gradient(to bottom,rgb(180, 6, 248), rgb(230, 3, 181));*/ /*purple to pink */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 40px 0;
    position: relative;
    z-index: 1;
}
    /*padding: 20px 0;*/

header img {
    display: block;
    margin: 0.5rem auto;
    width: 365px; /* larger width */
    height: auto; /* maintain aspect ratio */
    max-width: 90vw; /* responsive on small screens */
    border: 20px solid black;
    border-radius: 50%;
}

header h1 {
    font-family: "Jersey 20", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 70px;
    margin: 30px 0 20px 0;
    color: black
}

/* Section headers */
h2 {
    font-family: "Jersey 20", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
    margin: 2rem 0 0.5rem 0;
    color: black
}

/* Tighter paragraph spacing after h2*/
h2 + p{
    margin-top: 0;
}
 /* Images in main content*/
main img {
    display: block;
    max-width: 100%;
    margin-bottom: 0.25rem;
}

/* Caption spacing */
.caption {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    font-style: italic;
}

/* Spacing before a new section */
.caption + h2,
ol + h2,
ul + h2 {
    margin-top: 2rem;
}

/* Layout for main content*/
main {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

/* Footer styles */
footer {
    width: 100%;
    background-image: url('../img/blue-backenhancedfiltercopy.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 10px 0;
    color: #000000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.3;
}

footer .content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
    text-align: left; /* Align text to the left */
    font-weight: 500;
    font-size: 11px;
}

footer .content p {
    margin: 2px 0 0 0;
    padding-left: 0.5em; /* Indent both lines slightly for balance */
}

footer .content p + p {
    margin-top: 0;
}


footer a {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
}

footer a:hover {
    text-decoration: underline;
}