body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('images/home/background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
}

.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s; 
}

.container:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

a {
    transition: none;
}

a:hover{
    color: rgb(0, 255, 234);
}

a:active{
    color:rgb(130, 253, 6);
}

h1 {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #232475;
    padding-bottom: 10px;
}

p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.content-placeholder {
    border: 2px solid #232475;
    padding: 50px;
    text-align: center;
    font-style: italic;
    color: #5a5a5a;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

ul li img {
    margin-right: 10px;
    width: 150px;
    height: 85px;
    border-radius: 8px;
    transition: none;
}

ul li:hover img {
    transform: scale(1.05);
}
.menu {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu a {
    text-decoration: none;
    color: #333;
    padding: 10px 20px;
    border: 1px solid transparent;
    transition: none;
}

.menu a:hover {
    color: rgb(0, 255, 234);
    border-color: rgb(0, 255, 234);
}

.menu a.active {
    border-bottom: 2px solid #232475;
    font-weight: 500;
}