.menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 130px;
    padding: 20px 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: 0.3s;
    z-index: 1000;
    /*border-bottom: 2px solid rgba(0,0,0,1);*/
}


body {
    font-family: 'Roboto', sans-serif;
    font-style: italic;
}


.logo{
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 40px;
    font-style: italic;
    font-family: 'Roboto', sans-serif;
}


.links {
    display: flex;
}


.links li {
    margin: 10px;
}


.links li a {
    color: white;
}


.logo span {
    font-size: 40px;
}








