h2 {
    text-decoration: underline;
}

h2, a {
    font-style: italic;
}

a, h2, p {
    text-shadow: 2px 2px rgba(0,0,0, 0.5);
}

span {
    font-style: italic;
    font-weight: bold ;
}

button, .btn {
    box-shadow: 5px 5px rgba(0,0,0, 0.5);
}

nav {
    font-family: 'Times New Roman', Times, serif;
    display: flex;
    justify-content: space-between;
    position: absolute;
    background-color:#7b1fa2;
    height: max-content;
    border-bottom: solid black 2px
}

nav ul li a:hover {
    background-color:rgba(0,0,0, 0.5);
    border-radius: 50%;
    
}

nav .brand-logo {
    position: unset;
    font-size: xx-large
}

.nav-wrapper {
    position: absolute;
    width: fit-content;
    height: inherit;
    display: flex;
    justify-content: space-between;
    margin-left: 20px;
}

.nav-tabs ul li a {
    font-size: x-large
}

.hero{
    background-image: url(../images/martini.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10%;
    height: 80vh;
    margin: 0;
}

.quote{
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: bolder;
    font-style: italic;
    font-family:'Times New Roman', Times, serif;
    margin: 140px 0 0 0;
}

.quote h2 {
    text-shadow: none;
    text-decoration: none
}

.quote h2, h3 {
    font-size: xxx-large;
}

.font-family{
    font-family: 'Times New Roman', Times, serif;
}

#music{
    text-align: center;
    padding: 30px;
    border-top: black 2px solid;
}

#music h2{
    margin: 0;
}

#music div p {
    font-size: 20px;
}    

#btn-group{
    margin-bottom: 20px;
    width: 100%;
}

.audio-player{
    border-radius: 50px;
	background: url(../images/music-player-background.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 35%;
}

#buttons{
	width: 100%;
	display: block;
    margin: 15px auto;
}

#button-container {
    width: 100%;
}

#buttons span {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
    align-content: center;
}

button#play{
	width:70px;
	height:70px;
	background:url(../images/play.png) no-repeat;float:left;
}

button#pause{
	width:70px;
	height:70px;
	background:url(../images/pause.png) no-repeat;float:left;
}

#music h6 {
    color: white;
}

.header-music {
    color: white
}

.container{
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align:center;
}

.recipes{
    background-image: url(../images/bartender.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    border-top: black 2px solid;
    height: fit-content;
    margin: 0;
}

.modal-content p, .modal-footer a {
    text-shadow: none;
}

.recipes h2{
    padding-top: 30px;
}

.carousel {
    height: 500px;
    perspective: 400px;
}

.carousel h2 {
    text-decoration: underline;
}

.carousel .carousel-item {
    width: 270px;
}

.carousel .carousel-item img {
    border: 2px solid white;
}

.carousel .carousel-item h5 {
    color: white;
    text-align: center;
}

#favorite-cocktails{
    border-top: solid 2px black;
    width: 100%
}

#save-list a {
    text-shadow:none;
}

#player {
    background-color: #d2691e80;
    justify-content: center;
}

footer div {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    background-color: rgb(71, 2, 71);
    }

@media only screen and (max-width: 992px) {

nav .brand-logo {
    left: 0%;
    -webkit-transform: unset;
    transform: unset;
    }
}

@media only screen and (max-width: 813px){
    #btn-group{
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-content: space-around;
    }

    button {
        width: 70%;
        margin: 10px 0;
    }

    .btn {
        border-radius: 5px;
    }

@media only screen and (max-width: 460px) {
    .quote h2, h3 {
        font-size: xx-large;
    }
}

@media only screen and (max-width: 445px) {
    button {
        margin: 5px 0;
    }

    nav {
        display: block;
    }

    .nav-wrapper {
        margin: 0;
        display: block;
        text-align: center;
        width: 100%;
    }

    .nav-tabs{
        width: 100%;
        height: 71px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .right {
        float: unset !important
    }

    .audio-player{
        width: 100%;
    }

    #music {
        border-top: black 2px solid
    }

    #music div p {
        font-size: 20px;
    }

    #favorite-cocktails{
        border-top: solid 2px black;
        width: 100%
    }

@media only screen and (max-width: 277px) {
    
    .nav-tabs i {
        font-size: medium;
    }

    .nav-tabs ul {
        padding: 0
    }

    .nav-tabs ul li a {
        font-size: large;
        padding: 0;
        margin: 0 auto;
    }
}

