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

body{
  background-color: antiquewhite;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.3;
  margin: 0;
}
h1{
  text-align: center;
  border-bottom:3px solid black;
  padding-bottom:5px;
  margin: 100px 20px 30px;
  
}
.paragraf{
  background-color: rgb(255, 255, 255);
  border-radius: 5px;
  padding:10px;
  margin: auto;
  text-align: center;
  border: 1px dashed rgb(255, 255, 255);
  margin: 20px 35px 100px;
  
}
.paragraf:hover{
    border-color: rgb(0, 0, 0);
}

.menu{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 600px;
  margin:0 auto;
}
.card{
  display: block;
  padding: 20px;
  background: #f0f0f0;
  border-radius: 12px;
  text-decoration: none;
  color: black;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.card:hover{
  transform: scale(1.05);
  background: #e0e0e0;
}
/* Reset dasar */


/* Navbar utama */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  padding: 10px 30px 15px;
  position: sticky;
  top: 0;
  border-radius: 0 0 8px 8px;
  
}

/* Logo */
.logo {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

/* Menu */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

/* Link */
.nav-links a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

/* Hover effect */
.nav-links a:hover {
  color: #00bcd4;
}
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: #00bcd4;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}
nav{
    margin-bottom:px;
}

