*{
    scroll-behavior: smooth;
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
}
body{
  
    height: 100%;
    width: 100%;
}
.front{
  background-image: linear-gradient(rgba(255,255,255,0.3),rgba(255, 255, 255,0.3)),url(../images/bgwebfinal.jpg);
  background-position: center;
  background-size: cover;
    padding-top: 10%;
    padding-bottom: 11%;
}
.tagline{
    margin-left: 10%;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
    background-color: aquamarine solid 2px;
}
.logo{
    float: left;
    margin-top: -20px;
    margin-left: 12%;
    height: 15vw;
    width: 15vw;
    border-radius: 10%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    background-image: url(../images/biglogoblack.png);
    box-shadow: 10px 10px 20px black;
    transition: background-image ease-in-out 500ms;
}
.logo:hover{
    background-image: url(../images/logowhite.jpg);
    background-position: center;
}
.text{
    font-size: 50px;
    text-transform: uppercase;
    font-family: 'Black Ops One', cursive;
}
.some img{
    float: right;
    width: 35%;
    margin-top: -36%;
    box-shadow: 10px 10px 20px black;
}
.order{
    width: 60%;
    gap: 10%;
    margin-top: 8%;
    text-transform: uppercase;
    font-size: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.waytoorder{
    cursor: pointer;
    padding: 2%;
    border-radius: 25px;
    margin-top: 10px;
    font-size: 100%;
    text-transform: uppercase;
    background-color: black;
    font-family: 'Black Ops One', cursive;
    color: white;
    transition: background-color color text-decoration ease-in-out 500ms;
}
.waytoorder:hover{
    background-color: #f2f2f2;
    color:black;
    text-decoration: underline;
}
.waytoorder a{
  text-decoration: none;
  color:white;
}
.waytoorder:hover a{
  background-color: #f2f2f2;
  color:black;
  text-decoration: underline;
}