header nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header ul {
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

header p {
    color: #F8EDFF;
    font-family: "Outfit", sans-serif;
    font-size: 30px;
    font-weight: bold;
}

header a {
    color: #F8EDFF;
    font-family: "Outfit", sans-serif;
    font-size: 20px;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
}

header a:hover {
    transition: 0.2s;
    background-color: #545158;
}

header a:not(hover) {
    transition: 0.2s;
}
