* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSzJ73GjHGru9AAcusCHi1ImDEWbuSFw7OejA&s') no-repeat center center/cover;
    color: rgb(198, 195, 240);
    text-align: center;
    
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(0, 0, 0, 0.5);
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}

nav ul li a.active, nav ul li a:hover {
    border-bottom: 2px solid white;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2%;
}

.hero img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
}

.hero h1 {
    font-size: 36px;
    margin-top: 20px;
}

.hero p {
    font-size: 20px;
    margin-top: 10px;
}
