/*
  "Our design is very human-centric."
*/

@keyframes pointless-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

body {
    font-family: "Comic Sans MS", "Comic Sans", cursive;
    font-size: 18px;
    line-height: 1.7;
    color: #000;
    text-align: center;
    margin: 0;
    padding: 40px 20px;
    /* Garish gradient for that "graphic design is my passion" feel */
    background: linear-gradient(45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 400% 400%;
    animation: gradient-bg 15s ease infinite;
}

@keyframes gradient-bg {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

main, header, footer {
    max-width: 650px;
    margin: 20px auto; /* Added margin between elements */
    padding: 20px;
    /* Frosted glass effect */
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 10px; /* Rounded corners for that modern look */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

header {
    text-align: center;
    margin-bottom: 40px;
    background-color: rgba(255, 255, 255, 0.9); /* More opaque for the title */
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0;
    display: inline-block; /* To make transform work correctly */
    animation: pointless-pulse 4s ease-in-out infinite;
}

h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #000;
    padding-bottom: 5px;
    margin-top: 40px;
}

section {
    margin-bottom: 30px;
}

a {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

a:hover {
    background-color: #ffff00;
    color: #000;
    text-decoration: none;
}

ul {
    list-style-type: '— ';
    padding-left: 20px;
}

footer {
    margin-top: 60px;
    font-size: 0.8em;
    text-align: center;
    color: #333;
    background: none; /* Footer doesn't need a background */
    box-shadow: none;
}

/* The ironic twist is now the whole design */
#contact {
    position: static; /* Removing the old twist as it's now obsolete */
    left: 0;
}