body{
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url("https://static.vecteezy.com/system/resources/previews/008/176/568/large_2x/texture-concrete-dirty-seamless-concrete-texture-background-photo.jpg");
    background-size: cover;
    background-position: center;
    color: #3cff00 ;
    font-family: 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 7em;
    text-align: center;
    font-family: "Ballet", cursive;
    margin-top: 20px;
    text-shadow: #000000 0px 0px 5px;

}

.navbar {
    width: 100%;
    background-color: #222222;
    padding: 10px 0;
    box-shadow: #222222 0px 2px 10px;
}

.navbar ul {
    padding: 15px 15px;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
    padding: 0;
    text-shadow: #000000 0px 0px 5px;
}

.navbar ul li {
    margin: 0 15 px;
}

.navbar ul li a {
    color:#ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    text-shadow: 1px 1px 2px #000;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #333333;
    border-radius: 10px;
    box-shadow: #000000 0px 2px 10px;
}  
.container h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: #000000 0px 0px 5px;
}
.container p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 20px;
    text-shadow: #000000 0px 0px 5px;
}

.slider-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3cff00;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: #75ff48;
    transform: scale(1.1)
}

.content-section {
    margin-bottom: 40px 0;
}

.content-section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #444444;
    border: #3cff00 2px solid;
    border-radius: 10px;
    box-shadow: #000000 0px 0px 5px;
}
.contact-form label {
    display: flex;
    margin-bottom: 10px;
    font-weight: bold;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    border-radius: 2px;
    background-color: #555555;
    color: #ffffff;
}
.contact-form input[type="submit"] {
    background-color: #3cff00;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.contact-form input[type="submit"]:hover {
    background-color: #75ff48;
}

.button {
    align-self: center;
    display: inline-block;
    padding: 10px 20px;
    background-color: #3cff00;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.button:hover {
    background-color: #75ff48;
    transform: scale(1.1);
    box-shadow: #000000 0px 2px 10px;
}

.slider{
    display: flex;
    overflow: hidden;
    width: 100%;
    border: 2px solid #3cff00;
    border-radius: 10px;
    height: 400px;
}

.slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}   

.slider img:hover {
    transform: scale(1.05);
}

.slider-controls {
    top: -50px;
    display: flex;
    justify-content: space-between;
    position: relative;
}