html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    border: 2px solid black;
    display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    background-color: #ccc;
    color: #333;
}

header {
     background-color: #333;
     border-bottom: black solid 2px; 
}

header h1{
    font-size: xx-large;
    margin: 0;
    background-color: #222;
    color: white;
    padding: 1.5rem 0;
    text-align: center;
    border-bottom: black solid 2px;
}

header h2 {
    font-size: medium;
    font-weight: normal;
    margin: 0;
    background-color: #333;
    color: white;
    padding: 1.0rem 0;
    text-align: center;
}

main {
    flex: 1;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
    background-color: white;
    border-style: solid;
    border-width: 2px;
    border-color: black;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

section.availability {
    border: 2px solid #333; 
    border-radius: 5px;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    background-color: #f9f9f9;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

section.availability h2 {
    margin-top: 0;
    font-size: 1.2rem;
    color: #333;
}

section.availability p {
    margin: .5rem 0 0;
    line-height: 1.5;
}


h1 {
    color: #fff;
}

h2 {
    color: #333;
}

section {
    margin-bottom: 2rem;
}

section.about-me {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

section.about-me img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: black solid 2px;
    margin-left: 1rem;
}

div.logo-paragraph {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-top: 1rem;
}

div.logo-paragraph img {
  width: 72px;               /* pick 56–96px to taste */
  height: auto;              /* keep aspect ratio */
  object-fit: contain;
  flex: 0 0 auto;
}

div.logo-paragraphh p {
  margin: 0;                 /* remove default top margin */
}

section img { max-width: 100%; height: auto; }

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 0.001rem ;
    width: 100%;
    margin-top: auto;
    border-top: black solid 2px;
}

a {
    color: #75a1b7;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
