body {
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    background-color: #530303;
    color: #f0f0f0;
    margin: 0;
    padding: 0;
}
header {
    background-color: #530303;
    padding: 10px;
    text-align: center;
    position: relative;
    z-index: 10;
}
header h1 {
    margin: 0;
    font-size: 2em;
    color: #e0e0e0;
}
nav {
    display: flex;
    justify-content: center;
    background-color: rgb(88, 45, 45);
    padding: 10px 0;
    position: relative;
    z-index: 10;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    position: relative;
}
nav ul li a {
    color: #f0f0f0;
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}
nav ul li a:hover {
    background-color: #444;
}
nav ul li ul {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    background-color: #333;
    padding: 0;
    z-index: 20;
}
nav ul li ul li {
    width: 200px;
}
nav ul li:hover ul {
    display: block;
}
.carousel {
    max-width: 400px;
    margin: 20px auto;
    position: relative;
    width: 100%;
    height: auto;
    
}
.carousel img {
    width: 100%;
    height: auto;
    display: none;
}
.carousel img.active {
    display: block;
}
.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}
.carousel-controls button {
    background-color: transparent;
    border: none;
    color: #f0f0f0;
    font-size: 2em;
    cursor: pointer;
}
.content {
    padding: 20px;
}
.contact-form, .links {
    margin: 20px 0;
    padding: 20px;
    background-color: #530303;
    border-radius: 10px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}
.contact-form button {
    background-color: #444;
    color: #f0f0f0;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}
.contact-form button:hover {
    background-color: #666;
}
.presentation {
    margin: 20px 0;
    padding: 20px;
    background-color: #530303;
    border-radius: 10px;
}
footer {
    text-align: center;
    padding: 20px;
    background-color: #4e0404;
}
