@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&family=Pacifico&display=swap');

*{
    margin: 0; padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
}

:root{
    --citron: #C8C855ff;
    --black: #080707ff;
    --platinum: #DCDED9ff;
    --licorice: #1C0E0Cff;
    --coyote: #776D55ff;
    --box-shadow: 0 0.2rem 1rem rgba(0,0,0,.1);
}

body {
    background-image: url(sb1.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

header{
    text-transform: uppercase;
    border-radius: 5rem;
    left: 0; right: 0; top: 0;
    position: fixed;
    background: #FFFFFF;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 0px 7%;
display: flex;
align-items: center;
justify-content: space-between;
    margin: 1rem;
    z-index: 1000;
}

header .navbar{
    margin: 0 auto;
    text-align: center;
}

header .logo img{
    margin-left: 3.6rem;
    width: 90px;
    display: none;
}

header .navbar img{
    width: 90px;
}

header .navbar ul{
    display: flex;
    align-items: center;
    list-style: none;
}

header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    border-radius: 6rem;
    margin: 1rem;
    font-size: 23px;
    padding: 20px;
    color: #333;
    display: block;
    transition: 0.34s;
}

header .navbar ul li a:hover{
    background: #333;
    color: #FFFFFF;
}

header .navbar ul li ul{
    position: absolute;
    left: 0;
    width: 200px;
    background: #fff;
    display: none;
}

header .navbar ul li ul li{
    width: 100%;
    border-top: 1px solid rgba(0,0,0,.1);
}

header .navbar ul li ul li ul{
    left: 200px;
    top: 0;
}

header .navbar ul li:focus-within > ul,
header .navbar ul li:hover > ul{
    display: initial;
}

#menu-bar{
    display: none;
}

header label{
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: none;
}

.home .content{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home .content .maintext{
    position: absolute;
    right: 0;
    margin-right: 10rem;
    margin-left: 10rem;
    text-align: center;
}

.home .content .maintext h1{
    text-shadow: 5px 5px 10px black;
    line-height: 100px;
    font-size: 120px;
    font-family: 'Pacifico', cursive;
    color: rgb(254, 242, 0);
}

.home .content h3{
    font-family: 'Caveat', cursive;
    text-shadow: 5px 5px 10px black;
    color: rgb(236, 147, 31);
    font-size: 70px;
}

.home .content p{
    background: rgba(51, 49, 26, 0.61);
    padding: 1rem;
    border-radius: 1rem;
    max-width: 1000px;
    margin: auto;
    text-align: left;
    font-size: 30px;
    color: aliceblue;
}

.home .content .homeimage img{
    left: 0;
    width: 650px;
}

.home .content .higalt img{
    display: none;
}

.home .content a{
    transition: 0.3s;
    border-radius: 10rem;
    font-size: 30px;
    color: #ffffff;
    padding: 30px;
    background-color: #8b8019;
}

.home .content a:hover{
    transition: 0.3s;
    color: #918203;
    background-color: #333;
}

@media(max-width:991px){

    body{
        background-size: unset;
    }

    header{
        display: flex;
align-items: center;
        justify-content: space-between;
        padding: 5px;
    }

    header label{
        margin-right: 1rem;
        display: initial;
    }

    header .logo img{
        display: initial;
    }

    header .navbar img{
        display: none;
    }

    header .navbar{
        margin-top: 1rem;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: #fff;
        border-top: 1px solid rgba(0,0,0,.1);
        display: none;
        border-radius: 2rem;
    }

    header .navbar ul{
        display: block;
        list-style: none;
    }

    header .navbar ul li{
        width: 100%;
    }

    header .navbar ul li a{
        border-radius: 2rem;
        margin: 0.5rem;
        font-size: 15px;
    }

    header .navbar ul li ul{
        position: relative;
        width: 100%;
    }

    header .navbar ul li ul li{
        background: #eee;
    }

    header .navbar ul li ul li ul{
        width: 100%;
        left: 0;
    }

    .home .content{
        margin-top: 9rem;
        flex-direction: column-reverse;
    }

    .home .content .maintext{
        position:initial;
        margin: auto;
    }

    .home .content .maintext h1{
        margin-top: 1.1rem;
        line-height: 50px;
        font-size: 80px;
    }
    
    .home .content h3{
        margin-top: 1.6rem;
        line-height: 0.8;
        font-family: 'Caveat', cursive;
        color: rgb(236, 147, 31);
        font-size: 50px;
    }
    
    .home .content p{
        border-radius: unset;
        background: rgba(0, 0, 0, 0.4);
        margin-left: 1rem;
        padding: 1rem;
        margin-left: 0rem;
        text-align: center;
        font-size: 25px;
        color: aliceblue;
    }
    
    .home .content .homeimage img{
        display: none;
    }
    
    .home .content .higalt img{
        display: initial;
        margin-top: 2rem;
        width: 600px;
    }

    .home .content a{
        transition: 0.3s;
        border-radius: 10rem;
        font-size: 20px;
        color: #ffffff;
        padding: 20px;
        background-color: #8b8019;
    }

    #menu-bar:checked ~ .navbar{
        display: initial;
    }

}