﻿/* style.css */
body {
    font-family: Arial, sans-serif, Tahoma;
    margin: 0;
    padding: 0;
}

.logo img {
	height: 50px;
	margin-left: 20px;
	float: left;
}

header {
    background-color: blueviolet;
    color: white;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}

nav ul li a:hover {
				background-color: #BB8BF0;
				border-radius: 5px;
}

.hero {
    background: url('hero.jpg') no-repeat center center;
    background-size: cover;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #333333;
    text-align: center;
}

footer {
    background-color: #5B5BC8;
    text-align: center;
    padding: 20px 0;
}
