* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    background: #0f1f1f;
    font-family: 'Montserrat', sans-serif;
    padding: .75rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    color: #ffde57;
}

header{
    background: #4584b6;
    text-align: center;
    font-weight: 500;
    padding: .5rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-radius: .75rem;
    text-shadow: #0f1f1f .05rem .05rem .1rem;
}

header p{
    font-size: 18px;
}

nav{
    display: flex;
    gap: .75rem;
    padding: 10px; 
    border-radius: .75rem;
}

nav .pertemuan{
    min-width: 12rem;
    display: flex;
    flex-direction: column;
    background: #4584b6;
    border-radius: .5rem;
    padding: 1rem 1rem;
    font-weight: 500;
    text-shadow: #0f1f1f .075rem .075rem 2rem;
}

nav div a{
    color:#ffde57;
    padding: .2rem;
    border-radius: .5rem;
    font-size: 16px;
    transition: all .8s;
}

nav .isi{
    background: #4584b6;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    font-size: 16px;
    width: 100%;
    padding: 2rem 1.5rem;
    border-radius: .5rem;
}

nav .isi h2{
    font-size: 28px;
     text-shadow: #0f1f1f .025rem .025rem .01rem;
}

nav .isi p{
    line-height: 1.65rem;
    font-size: 18px;
    text-align: justify;
    font-weight: 550;
}

nav div a:hover{
    background: white;
    color: #214E34;
}

footer{
    background: #4584b6;
    text-align: center;
    padding: .5rem;
    font-size: 14px;
    color: #DBE5A4;
    border-radius: .75rem;
}
