*
{
    margin: 0;
    padding: 0;
}

header
{
    background-image: url(Images/TOMMYPASTA.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.nav-bar
{
    background: rgb(0, 0, 0, 0.5);
    height: 80px;
}

.logo{
    margin: 10px 50px;
    height: 60px;
}

.menu{
    float: right;
    list-style: none;
    margin: 20px;
}

.menu li{
    display: inline-block;
    margin: 10px 5px;
}

.menu li a{
    text-decoration: none;
    color: white;
    padding: 5px 10px;
    font-family: cursive;
    letter-spacing: 2px;
    border: 1px solid white;
}

.menu li a:hover{
    background: red;
    transition: .4s;
    color: wheat;
}

.welcome{
    position: fixed;
    text-align: match-parent;
    font-family: cursive;
    color: red;
}















