* {
    text-decoration: none;
}
body {
    color: black;
    margin: 0;
    padding: 0;
    background-image: url(background.jpg);
}

header {
    text-align: center;
    background-color: burlywood;
    padding: 20px;
    width: 75%;
    border-radius: 25px;
}

.judul {
    color: black;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-family: 'Josefin Sans', sans-serif;
    margin: 0;
}

img {
    display: flex;
}

aside {
    position: fixed; 
    top: 2px; 
    right: 5px; 
    background-color: orange; 
    padding: 20px;
    border-radius: 25px;
}

aside p, h3 {
    padding: 0;
    margin: 0;
    text-align: center;
}

.tabel {
    margin: 40px;
    background-color: burlywood;
    padding: 30px;
    border-radius: 20px;
}

table {
    font-family: sans-serif;
    color: #302d2d;
    border-collapse: collapse;
    width: 100%;
    border: 1px solid black;
}

table th {
    background: orange;
    color: #fff;
    font-weight: normal;
}

table th, td {
    border: 2px solid black;
}

table tr {
    background-color: #e7e0e0;
}


table tr:nth-child(even) {
    background-color: #f2f2f2;
}

button {
    border-radius: 50%;
    background-color: darksalmon;
    color: #fff;
    padding: 10px 20px;
    border: none;
}

a {
    color: blue;
}

button:hover {
    transform: scale(1.2);
}

footer {
    position: absolute;
    background-color: #d57b5c;
    color: black;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    margin-top: 0;
}

footer p {
    padding: 10px 0;
    margin: 0 auto;
}