html {
    font-size: 10px;
}

body {
    background-color: #ffffff; /* Teal background */
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 200;
    font-size: 20px;
    color: #333; /* Darker text for better contrast */
    line-height: 1.6; /* Improved readability */
}

.speech {
    padding: 2rem;
    width: 50rem;
    margin: 3vh auto;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Softer shadow */
    transition: box-shadow 0.3s ease; /* Transition for shadow on hover */
}

.speech:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3); /* Deeper shadow on hover */
}

.words {
    max-width: 500px;
    margin: 50px auto;
    background: white;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
    line-height: 3rem;
    min-height: 15vh;
    border: 2px solid #ccc; /* Lighter gray for subtlety */
    position: relative; /* Needed for the pseudo-element */
}

.words:before {
    content: '';
    position: absolute;
    width: 4px;
    top: 0;
    left: 30px;
    bottom: 0;
    border: 1px solid #efe4e4; /* Consistent color with the rest of the design */
}

button {
    background: #06BBCC; /* Teal background for buttons */
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    width: 49%;
    margin-top: 1rem;
    font-size: 2rem;
    color: white; /* White text for better contrast */
    cursor: pointer;
    transition: background 0.3s ease; /* Transition for background on hover */
}

button:hover {
    background: #049DAA; /* Darker teal on hover */
}

h1 {
    font-family: 'Roboto', sans-serif;
    text-align: center;
    color: rgb(0, 0, 0); /* White text for better contrast */
    padding: 1rem 2rem;
    border-radius: 5px;
    background: #06BBCC; /* Teal background for headers */
    margin: -0rem 0 0rem -0rem;
    font-size: 5rem;
    font-weight: 100;
}

h2 {
    text-align: center;
    font-weight: normal;
    background: #06BBCC; /* Consistent header color */
    padding: 1rem 2rem;
    border-radius: 5px;
    color: white; /* White text for contrast */
}

footer {
    text-align: center;
    margin-top: 5rem;
    font-size: 25px;
    background: #06BBCC; /* Footer background */
    padding: 1rem 2rem;
    color: white; /* White text for better visibility */
}

footer a {
    color: #fff; /* White for links */
    text-decoration: underline; /* Underline for links */
    transition: color 0.3s ease; /* Transition for link color */
}

footer a:hover {
    color: #F3C010; /* Gold on hover for links */
}

.fa-github {
    font-size: 30px;
    transition: transform 0.3s ease; /* Add transition for icon */
}

.fa-github:hover {
    transform: scale(1.1); /* Slightly scale on hover */
}

/* Media Queries for Responsive Design */
@media screen and (max-width: 800px) {
    .speech {
        width: 90%; /* More fluid width on smaller screens */
    }

    h1 {
        font-size: 3rem; /* Responsive font size */
    }

    button {
        width: 100%; /* Full width on smaller screens */
        margin: 0.5rem 0; /* Add some spacing between buttons */
    }
}
