@import url('https://fonts.googleapis.com/css2?family=Rubik+Puddles&display=swap');
/* font-family: 'Rubik Puddles', cursive; */
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@1,300&display=swap');
/* font-family: 'Bai Jamjuree', sans-serif; */

/* my colours   yellow-->rgb(242, 205, 96);
                orange-->rgb(255, 82, 27);
                blue-->rgb(15, 163, 177);      */

@media screen and (max-width: 1141px) {
    #catan {
        display: flex;
        flex-wrap: wrap;
    }
}

html,body{
    overflow-x: clip;
}

body {
    box-sizing: border-box;
    margin: 0%;
    padding: 0%;
    font-family: 'Bai Jamjuree', sans-serif;
    background-color: rgb(242, 205, 96);
}
*{text-align: center;
}

/* -------------------------- header styling  ---------------- */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: -1px;
    font-family: 'Rubik Puddles', cursive;
    color: rgb(255, 82, 27);
    background-color: rgb(15, 163, 177);
    border: 1px solid rgb(63, 60, 60);
    margin: 1px;
    padding: 8px;
}

#ghosttext {
    color: black;
}

#ghosttext:hover {
    animation-name: textmotion;
    animation-duration: 4s;
    animation-delay: 0s;
    animation-iteration-count: 1;
}

@keyframes textmotion {
    100% {
        transform: rotate(360deg);
    }
}

h1 {
    margin-bottom: -15px;
}

.logo {
    display: inline-block;
    position: relative;
    border-radius: 75px;
    width: 70px;
    height: 70px;
    box-shadow: 9px 0px 9px 2px rgb(255, 82, 27);
}

/* ----------------------- drop list-------------------------- */
#dropdownMenu{
    position: relative;
    display: block;
    right: 10vw;
}

#ddButton{
    background-color: rgb(242, 205, 96);
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 10%;
}

#ddItems{
    display: none;
    position: absolute;
    background-color: rgb(255, 127, 88);
    min-width: 160px;
    z-index: 1;
    border-radius: 10%;
}
#ddItems a{
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10%;
}

#ddItems a:hover {background-color: rgb(171, 234, 240)}

#dropdownMenu:hover #ddItems {
    display: block;
}


/* -----------------main styling ------------------  */
#bgfoto {
    width: 99.8vw;
    height: 40vh;
}

#ourStory {
    display: flex;
    justify-content: space-around;
    margin-bottom: 4vh;
}


#price {
    text-align: left;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

#catan {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

h2 {
    font-family: 'Bai Jamjuree', sans-serif;
    color: rgb(255, 82, 27);
}


p,
h3 {
    font-family: 'Bai Jamjuree', sans-serif;
    color: rgb(15, 163, 177);
}
.ctnText{
    color: rgb(255, 82, 27);
}


#mapbox {
    margin-top: 6vh;
}



/* ---------------- footer --------- */

footer {
    background-color: rgb(15, 163, 177);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

#foottopbar {
    margin-top: -2px;
    margin-bottom: -12px;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

#footbottombar {
    margin-top: -22px;
    margin-bottom: -1px;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#livingwage {
    height: 50px;
    width: 50px;
    position: absolute;
    margin: -0.5%;
}