html {
    margin: 0;
    display: flex;
    flex-direction: column;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
	min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    background-image: url('https://res.cloudinary.com/dnajren2s/image/upload/v1706665439/bg_nmzym5.webp');
    background-size: cover;
    background-position: no-repeat;
	color: white;
	position: relative;
	margin: 0;
    padding: 0;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: -1;
}

.main-container {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
	padding: 20px;
}

.main-container p {
    text-align: justify;
}

.main-container h1 {
    text-align: center;
    font-size: 36px;
    color: black;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
}

.main-container h2 {
    text-align: center;
    font-size: 30px;
    color: black;
	background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
}

.main-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
}

header {
    background-color: rgba(255, 255, 184, 0.5);
    padding: 10px 40px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header img {
    height: 50px;
}

button#daftarBtn {
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button {
    background-color: blue;
    color: white;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: darkblue;
}

section {
    margin: 20px 0;
}

footer {
    background-color: rgba(255, 255, 184, 0.5);
    text-align: center;
    padding: 20px 0;
	color: black;
	position: relative;
}

nav ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ffd700;
}

.sosial-media {
    text-align: center;
    margin-top: 20px;
}

.sosial-media a {
    margin: 0 10px;
    color: #fff;
    text-decoration: none;
	display: inline-block;
}

.sosial-media a:hover {
    color: #ffd700;
}

.sosial-media img {
    width: 24px;
    height: auto;

section {
    margin-bottom: 1px;
    padding: 10px;
}

#pengenalan img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
    height: auto;
}

a:hover, button:hover {
    transition: background-color 0.3s ease;
}