/* Gaya Dasar */

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Montserrat", sans-serif;
    background: url("../assets/background.jpg") center/cover;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.container {
    background-color: transparent;
    border: 2px solid #ff5900;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 80%;
    max-width: 800px;
    height: 80vh;
    max-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 20px;
}

.date-time {
    text-align: left;
    margin-left: 5%;
}

/* Terapkan gaya ini ke elemen <p> di dalam .date-time */
.date-time p {
    font-size: 1.5em;
    white-space: nowrap;
    word-break: keep-all;
    margin-top: 15%;
    color: #ff5900;
    font-weight: bold;
}

.date-time .time {
    font-size: 1.7em;
    color: white;
    font-weight: bold;
    margin-top: -10%;
}

.logo-container {
    margin-right: 5%;
    text-align: right;
}

.logo {
    width: 55%;
    height: auto;
}

.content {
    text-align: center;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.content h1 {
    font-size: 2em;
    margin-bottom: 20px;
}

.meeting-info {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    width: auto; /* Biarkan lebar menyesuaikan konten */
    max-width: 90%; /* Perbesar max-width */
    min-width: 500px; /* Atur lebar minimum */
    height: auto;
    padding: 30px;
    color: #333;
    display: inline-block;
    text-align: center;
}

.meeting-info h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.meeting-info .attendee {
    font-size: 1.2em;
    margin-bottom: 5px;
}

.meeting-info .time {
    font-size: 1.5em;
    font-weight: bold;
}
