
body {
    background-color: black;
    color: white;
}

body h2 {
    color: black;
}

header {
    margin-top: 20px;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 9%;
    background-color: transparent;
    filter: drop-shadow(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}
    
.logo{
    font-size: 40px;
    color: white;
    font-weight: 800;
    cursor: pointer;
    transition: 0.5s ease;
    text-decoration: none;
}

.logo:hover{
    transform: scale(1.1);
    color: #b74b4b;
}

nav a{
    font-size: 20px;
    color: white;
    margin: 0 40px 0 4rem;
    font-weight: 500;
    transition: 0.3s ease;
    border-bottom: 3px solid transparent;
    text-decoration: none;
}

nav a:hover,
nav a.active{
    color: #b74b4b;
    border-bottom: 3px solid#b74b4b;
}

table {
    margin: 100px 5% 0 5%;
}

img {
    width: 28vw;
    border-radius: 50%;
    margin: 0 20px 35px 0;
}

h2 {
    background-color: white;
    padding: 10px;
    text-align: center;
    border-radius: 10px;
}

table p {
    padding: 0 50px;
}

.keterangan {
    visibility: hidden;
}

.social-icons img {
    border: 2px #b74b4b solid;
}

.logo-email {
    width: 20px;
    padding: 13px 10px;
    border-radius: 50%;
}

.logo-instagram {
    width: 30px;
    padding: 12px 5px;
    border-radius: 50%;
}

.logo-x {
    width: 20px;
    padding: 10px;
}

.logo-whatsapp {
    width: 20px;
    padding: 10px;
}

.social-icon a:hover{
        color: black;
        transform: scale(1.3)translateY(-5px);
        background-color: #b74b4b;
}