head{
    margin: 0;
    padding: 0;
}
.wrapper{
    width: inherit;
    margin: inherit;
}
header{
    background: url("images/Logo/ABC_Pizza_Background.jpg");
    height: 100vh;
    -webkit-background-size:cover;
    background-size:cover;
    background-repeat:repeat-y;
    background-position: center center;
    position: relative;
}
.nav-area{
    float: right;
    list-style: none;
    margin-top: 30px;
}
.nav-area li{
    display: inline-block;
}
.nav-area li a{
    color: rgb(255,255,255);
    text-decoration: none;
    padding: 5px 20px;
    font-family: poppins;
    font-size: 14px;
}
.nav-area li a:hover{
    background: rgb(255,255,255);
    color: #333;
}
.logo img{
    width: 150px;
    float: left;
    height: auto;
}
.welcome-text{
    position: absolute;
    width: 600px;
    height: 300px;
    margin: 20% 30%;
    text-align: center;
}
.welconme-text h1{
    text-align: center;
    color: rgb(255,255,255);
    text-transform: uppercase;
    font-size: 60px;
}
.welcome-text a{
    display: inline-block;
    border: 1px solid rgb(255,255,255);
    padding: 10px 25px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 20px;
    display: inline-block;
    color: rgb(255,255,255);
}
.welcome-text a:hover{
    background: rgb(255,255,255);
    color: #333;
}
}