* 
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body 
{
    font-family: 'Poppins', sans-serif;
    background-color: white;
}

h1 
{
    text-shadow: #ddd 1px 1px 5px;
    font-size: 24px;
    font-weight: bold;
}

h2 
{
    font-size: 20px;
    margin-bottom: 10px;
}

h3 
{
    font-size: 18px;
    margin-bottom: 10px;
}

p 
{
    font-size: 16px;
    line-height: 1.6;
}

.container 
{
    width: 100%;
}

.header 
{
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    position: relative;
    z-index: 10;
}

.menu-info 
{
    display: flex;
    justify-content: center;
    background-color: #f4f4f4;
    padding: 12px 30px;
    gap: 25px;
    font-weight: 600;
    background-color: #ff2222;
    list-style: none;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}

.link 
{
    color: #444;;
}

.layout 
{
    display: flex;
    gap: 20px;
    padding: 30px;
}


.menu-info a 
{
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-info a:hover 
{
    color: #ffffff;
}

.content 
{
    flex: 1;
    background-color: #4a4a4a;
    color: white;   
    padding: 20px;
    border-radius: 10px;
}

.judul
{
    color: #ff2222;
    text-shadow:#000000 1px 1px 5px;
    margin-bottom: 20px;
    text-align: center;
}

.image 
{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    margin: 0 auto 20px auto;
}

.sidebar 
{
    width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    height: fit-content;
}

.sidebar a 
{
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.sidebar a:hover 
{
    color: #ff2222;
}

.sidebar p 
{
    font-size: 14px;
    color: #333;
}

.footer 
{
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: fixed;
    z-index: 10;
}
