css
/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and General Settings */
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #222;
    padding: 1rem;
}

nav ul {
    list-style-type: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}
nav ul li a:hover{
    font-size: 20px;
    color: orange;
    transition: 1s;
}
/* Home Section */
.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    background-color: #111;
    padding: 2rem;
}

.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.text-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #ff6f00;
}

.text-content p {
    font-size: 20px;
    margin-bottom: 20px;
}
.text-content span {
    color: #ff6f00;
}

.btn {
    background-color: #ff6f00;
    color: #fff;
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
}
.btn:hover{
    transform: scale(1.5);
}
.image-content img {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #222;
    padding: 1rem;
    text-align: center;
}

footer p {
    color: #fff;
    font-size: 14px;
}
