/* handles whole page */
html{ 
    box-sizing: border-box;
    overflow-x: hidden;
} /* can also use :root{} */


body{
    background-image: url("../Neutral\ Simple\ Dekstop\ Wallpaper.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    background-attachment: fixed;
    color:black;
}

.btn{
    background-color: rgb(4, 70, 70, .80);
    color: black;
    font-weight: bold;
    --bs-btn-border-color: rgba(14, 13, 13);
    --bs-btn-hover-bg: rgb(15, 13, 13);
    --bs-btn-hover-border-color: rgba(14, 13, 13);
    --bs-btn-hover-color: rgb(4, 70, 70);
    border-radius: 5px;
}


/* handles top container of page */
header{
    background-color: rgb(4, 70, 70, .70);
    height: 25%;
    font-family: "Kavoon", cursive, Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 0;
    text-align:center;
    width: 100%;
}

/* container */
#mvmt-box{ 
    position: relative;
    overflow: hidden;
}

/* words */
#moving{ 
    position: absolute;
    width: max-content;
}

/* section */
#mvmt{
    position: absolute;
    left: 0;
    width: 100%;
}

@media screen and (min-width: 1440px) and (max-width: 1760px){
    header{
        padding-top: 0;
        height: 33%
    }
}

@media screen and (min-width: 1919px){
    header{
        padding-top: 0;
        height: 27%
    }
}

.navbar{
    background-color: rgb(4, 70, 70, .01) !important;
    font-family: "Kavoon", cursive, Georgia, 'Times New Roman', Times, serif;
}


/* handles bottom container of page */

main{
    position: relative;
}

article{
    width: 30%;
    height: 85%;
}

.form-input{
    background-color: rgba(17, 85, 85, 0.8);
    border-radius: 0%;
    border-color: rgb(255, 255, 255, .1);
    text-overflow: ellipsis;
    width: 250px;
}

input::placeholder{
    color: rgba(255, 255, 255, 0.8);
    font-size: small;
}

/* handles right article */

#right_article{
    font-family: "Shadows Into Light", cursive;
    width: 60%;
    height: 100%;
    padding-top: 30px;
    padding-left: 10px;
    padding-right: 0;
    position: absolute;
    top: 5px;
    right: -5px;
}

#flexDiv{
    display: flex;
    flex-wrap: wrap;
}

#cardDiv{
    width: 242px;
    max-height: 25rem;
    display: flex;
    flex-direction: column;
    margin-right: 100px;
    margin-top: 20px;
    background-color: rgb(245, 232, 232, .6);
}

img{
    border-radius: 5px;
    max-height: 50%;
   object-fit: cover;
}

#edit-btn{
    --bs-btn-padding-x: 0.375rem;
    --bs-btn-padding-y: .30rem;
}

button{
    font-size: 20px;
    width: 100px;
    height: 40px;
    text-align: center;
    background-color: rgb(4, 70, 70, .80);
    color: black;
    font-weight: bold;
    border-radius: 5px;
    border-color: rgba(14, 13, 13);
}

button:hover{
    background-color: rgb(15, 13, 13);
    border-color: rgba(14, 13, 13);
    color: rgb(4, 70, 70); 
}

            /* handles card in right article */

#card-btns{
  position: absolute;
  bottom: 1vh;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}


#card-head{
    color: black;
    font-weight: 300;
    text-align: justify;
    padding-left: 10px;
}

#dest-name, #dest-loc, #dest-desc{
    padding-left: 5px;
}

#dest-name{
    font-size: 30px;
    font-weight: bold;
}

#dest-loc{
    font-size: 25px;
    font-weight: bold;
}

#dest-desc{
    font-size: 25px;
}


/* handles left article */
#left_article{
    font-family: 'Kavoon', cursive;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
    padding-left: 10%;
    width: 40%;
    height: 100%;
}

.more-space{
    background-color: rgba(17, 85, 85, 0.8);
    border-radius: 0%;
    border-color: rgb(255, 255, 255, .1);
    text-overflow: ellipsis;
    height: 50px;
   width: 250px;
}