/* color scheme - 2364AA Green Blue - 3DA5D9 PICTON BLUE - 73BFB8 VERDIGRIS - FEC601 MIKADO YELLOW - EA7317 PUMPKIN */

html {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    color: seashell;
    background-color: #2364AA;
    opacity: 0.9;
    text-align: center;
}


/* h1 {
    font-size: 4vw;
}

h2 {
    font-size: 3vw;
}

h3 {
    font-size: 2vw;
} */

header {
    position: fixed;
    top: 0;
    margin-bottom: 0;
    display: flex;
    color: #FEC601;
    height: auto;
    width: 100%;
    border-bottom: 1px solid #EA7317;
    justify-content: space-between;
    z-index: 5;
    background-color: #2364AA;
}

.logo {
    /* display: inline-flex; */
    height: 90px;
    width: 90px;
}

@media screen and (max-width: 600px) {
    #logo {
        display: none;
    }
}

header img {
    height: 50px;
    width: auto;
    padding-left: 10px;
    z-index: 5;
}

.title {
    font-family: 'Brush Script MT', cursive;
    font-size: 45px;
}

#top-menu {
    display: inline-flex;
    height: 69px;
}

.link {
    text-decoration: underline;
}

a {
    color: #FEC601;
    font-size: 20px;
}

a:hover {
    color: #EA7317;
}

nav a {
    margin: auto 10px;
    padding: auto 10px;
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: space-around;
}

main {
    display: block;
    position: relative;
    margin-top: 150;
    justify-content: center;
    background-image: url('./resources/pics/cavern1.jpeg');
    background-size: cover;
    background-position: top;
    height: auto;
    align-items: start;
    z-index: 2;
    color: #FEC601;
}

#welcome {
    padding-top: 100px;
}

#places {
    padding-top: 20px;
}

.single {
    /* flex-shrink: 1; */
    height: auto;
    width: 600px;
    border: 5px solid #EA7317;
    border-style: double;
    border-radius: 5px;
    background-color: #3DA5D9;
    color: #FEC601;
}

.salesbox {
    height: auto;
    width: 550px;
    border: 5px solid #EA7317;
    border-style: double;
    background-color: #ffffff;
    color: #000000;
    justify-items: center;
}

.gig {
    height: auto;
    width: 600px;
    border: 5px solid #EA7317;
    border-style: double;
    border-radius: 5%;
    background-color: #3DA5D9;
    color: #FEC601;
}

button {

    display: inline-block;
    outline: 0;
    border: none;
    box-shadow: none;
    cursor: pointer;
    padding: 9px 22px;
    font-size: 22px;
    height: 50px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    line-height: normal;
    background: linear-gradient(90deg,#5522fa 0,#0074e4 100%);
    border-radius: 50px;
    transition: color .2s ease,background-color .2s ease,box-shadow .2s ease;
    :hover{
        box-shadow: 0 0 0 0.15rem #5ceace;
    }
    
}

footer {
    position: relative;
    top: 150px;
    margin-top: 50px;
    text-align: left;
    padding-left: 20px;
}