html,
body {
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    /*<-- that is to cancel out the free space that shows on the right hand side*/
}

body {
    font-family:sans-serif;
}
/*these variables are for my text including color theme i have going*/
.purptext {
    color:#802bb1;
}

.yellowtext {
    color:#ffe400;
}

nav {
    background-color:#2d283e;
    position: fixed;
    z-index: 1001;
    
}
.containernav{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

.nav-link {
    color:#ffe400;
    font-size:1.5rem;
}

.nav-link:hover {
    color: #802bb1;
}

/*my text within parallax div*/
#paratext{
    width:100%;
    height:auto;
    font-size:3rem;
    color: #ffe400;
    background:#802bb1;
    text-align:center;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index:100;
}

/*This is to create my parallax background*/
.parallax {
    background-image: url("../Img/variantParallax.jpg");
    height: 900px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*The equip variables are for the bootstrap cards, holding cocktail imgs and text*/
.equip {
    margin-top:40px;
    margin-bottom:40px;
    display:flex;
    justify-content:space-around;
    
}

.equip1 {
    width:25%;
    border:2px solid red;
    padding: 10px;
    background-color: #2D283E;
    box-sizing: content-box;
    display:inline-block;
    text-align: center;
    margin: 15px 25px 50px 25px;
}

.equip1 h2 {
    text-align: center;
    color:#802BB1;
}

.equip1 ul {
    color: #ffffff;
    font-size:15px;
    text-align: left;
}

.equip1 p {
    color: #ffffff;
    font-size:15px;
    text-align: left;
}

.footback {
    background-color: #2d283e;
    font-size:2rem;
    width:100%;
    color:#ffe400;
}

#font {
    font-size: 1rem;
}

.radius50 {
    background: #802BB1;
    border-radius:50%;
    font-size:2rem;
    padding:10px;
}

.darkpurp {
    color:#2d283e;
}

.top :hover {
    color: #ffe400;
    background-color: #2d283e;
    text-decoration: none;
}

.mainimgs {
    object-fit: fill;
    width:100%;
    height:auto;

}
/*spirit header is simply the header including name of spirit being used*/
.spiritHeader {
    height:100px;
    width:100%;
    display:flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    color:#ffe400;
}

.spiritHeader h1 {
    text-align: center;
    width:100%;
    background-color:#2e2842;
}



