/* Import the Luckiest Guy font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&display=swap');

/* General body styles */
body {
    background-color: black;
    color: white;
    font-family:'Luckiest Guy' Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/* Apply Luckiest Guy font to header */
h1 {
    font-family: 'Luckiest Guy', serif;  /* Use Luckiest Guy font */
    color: white;
    text-align: center;
    padding: 80px 0;
}

/* Style for the name and comment input fields */
input[type="text"],
textarea {
    background-color: #333;
    color: white;
    border: 1px solid #555;
    padding: 20px;
    width: 90%;
    margin: 10px auto;
    display: block;
    border-radius: 5px;
}

/* Focus state for input fields */
input[type="text"]:focus,
textarea:focus {
    border-color: #888;
    outline: none;
}

/* Style for the submit button */
button {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    display: block;
    margin: 10px auto;
}

button:hover {
    background-color: #444;
}

/* Style for comments displayed below the input fields */
.comment {
    background-color: #222;
    color: white;
    border: 1px solid #444;
    padding: 90px;
    margin: 10px 0;
    border-radius: 5px;
}

/* Style for the commenter's name */
.comment .name {
    font-weight: bold;
}

/* Styling for individual comment text */
.comment .text {
    margin-top: 5px;
    font-style: italic;
    padding: 80px;
}

/* Apply Luckiest Guy font to certain elements */
.luckiest-guy-regular {
    font-family: "Luckiest Guy", serif;
    font-weight: 400;
    font-style: normal;
}
