*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body{
    background-color: #d60d93;
}

/* HEADER */
header{
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding: 20px;
}

nav ul{
    list-style: none;
    margin-top: 10px;
}

nav ul li{
    display: inline-block;
    margin: 0 15px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover{
    color: yellow;
}

/* SECTION */
.container{
    width: 80%;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
}

.container img{
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin: 15px 0;
}

/* TABLE */
table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td{
    border: 1px solid black;
}

th{
    background-color: #1e3a8a;
    color: white
}

th, td{
    padding: 12px;
}

/* BUTTON */
button{
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background-color: #2563eb;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

button:hover{
    background-color: #1d4ed8;
}

/* FOOTER */
footer{
    text-align: center;
    background-color: #1e3a8a;
    color: white;
    padding: 15px;
    margin-top: 30px;
}