body {
    background-color: #1a1a1a;
    color: #f5f5f5;
    font-family: 'Creepster', cursive, 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    background-color: #262626;
    border: 2px solid #ff6600;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    max-width: 400px;
    text-align: center;
}

.title {
    font-size: 2em;
    color: #ff6600;
    text-shadow: 3px 3px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    margin-bottom: 10px;
}

.sub-title {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #cccccc;
}

.invitation-form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

label {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #ff9933;
}

input[type="text"],
select,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #333333;
    color: #ffffff;
}

input[type="text"]:focus,
select:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 5px #ff6600;
}

.submit-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #ff6600;
    color: #ffffff;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #cc5200;
}



details {
    width: 33%;
    border: 5px solid #767676;
    border-radius: 30px;
    display: inline;
    flex-direction: column;
    padding: 6px 12px;
    margin: 10px
}

fieldset {
    border: 0;
    padding: 0;
    width: 100%;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    border-radius: 3px;
    margin: 0;
    padding: 1px 2px;
    float: right;
    width: 100%;

}

ul li:hover {
    background: #eee;
    
}

ul li label {
    float: left;
    font-size: 15px;
}

ul li input {
    float: right;
}

.details-container{
    margin-bottom: 10px;
}

summary{
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Halloween Font Import */
@import url('https://fonts.googleapis.com/css2?family=Creepster&display=swap');