body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #874CAF;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    height: 50px;
    vertical-align: middle;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    text-decoration: underline;
}

.hero {
    background-color: #f2f2f2;
    padding: 50px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.hero img {
	border-width: 5px;
	border-color: black;
	border-style: solid;
	width: 300px;
	height: auto;
}

.hero .button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #874CAF;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.hero .button:hover {
    background-color: #A77CDF;
}

.features {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background-color: #fff;
}

.feature {
    width: 30%;
    text-align: center;
}

.feature h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.feature p {
    font-size: 1rem;
    color: #666;
}

footer {
    background-color: #874CAF;
    color: white;
    text-align: center;
    padding: 10px 0;
    position:relative;
    width: 100%;
    bottom: 0;
}
footer div {
    display: flex;
}
footer div p {
    font-size: 10px;
}
