body {
    font-family: Rubik, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 1em;
    margin: auto;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    position: relative;
}

nav ul li a:hover {
    color: #bb7fe5;
    text-transform: uppercase;
    
}

nav ul li a::after{
    content:'';
    height: 3px;
    width: 0;
    background: #c988f8;
    position: absolute;
    left: 0;
    bottom: -1px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;

}

.content {
    padding: 2em;
}

#home {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.home-content {
    display: flex;
}

.image img {
    max-width: 200px;
    height: auto;
    margin-right: 2em;
}

.info {
    max-width: 600px;
}

.content h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
    color:#bb7fe5
}

.content p {
    font-size: 1.2em;
}
