* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.0rem;
    height: 100vh;
    margin-top: 0px;
    padding: 0 20px;
    font-family: "Open Sans", "SN Pro", sans-serif;
    background-color: #ffeef2;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-title {
    text-align: center;
    font-family: "Pacifico", cursive;
    font-size: 1.8rem;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    min-height: 400px;
    max-height: 60%;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 0px 5px rgba(150, 150, 150, 0.1);
    background-color: #fff;
}

.card-image {
    min-width: 80px;
    min-height: 80px;
    width: 80px;
    height: 80px;
    border: 5px solid #ffcbd7;
    border-radius: 100%;
    padding: 2px;
}

.card-image img {
    height: 100%;
    width: 100%;
    object-fit: fill;
}

.card-title {
    text-align: center;
    font-size: 1.3rem;
}

.card-content {
    text-align: center;
    font-size: 1.2rem;
    font-family: "SN Pro", sans-serif;
}

.card-time-location {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 1.0rem;
    font-weight: bold;
    font-style: italic;
}

.card-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 0.8rem;
}

.card-button {
    display: block;
    width: 100%;
    border: none;
    border-radius: 8px;
    padding: 15px 15px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bolder;
    color: white;
    background-color: #f1465f;
}

.footer {
    text-align: center;
    font-size: 1.1rem;
    font-weight: bolder;
    font-style: italic;
    color: #ffabbe;
}

.invisible {
    display: none;
}