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

header {
    position: sticky;
    padding: 10px 20px;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    font-size: 20px;
    font-weight: bold;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    border: 2px solid #FF7F3E;
    border-radius: 30px;
}

.judul {
    color: #344CB7;
    padding: 14px 16px;
}

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

li {
    margin: 0px 10px;
    font-size: 20px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

li a {
    display: block;
    color: #344CB7;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    border: 2px solid #FF7F3E;
    border-radius: 10px;
}

li a:hover {
    background-color: #FF7F3E;
}

#home {
    margin-top: 50px;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #344CB7;
    color: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.text-container {
    max-width: 50%;
}

.text-container h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-container p {
    font-size: 24px;
    margin-bottom: 20px;
}

h2 {
    margin-top: 50px;
    text-align: center;
    font-size: 36px;
}

h3 {
    text-align: center;
    font-weight: bold;
    color: white;
    font-size: 25px;
}

.card {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

.card-about {
    background-color: #FF7F3E;
    padding: 14px 16px;
    margin: 10px;
    width: 50%;
    border-radius: 10px;
}

#about {
    margin-left: 20px;
    margin-right: 20px;
}