/* small ;max-width : 480px*/
/* mediume : max-width : 768px */
/* large : max-width : 1024px */
/* xlarge : max-width : 3200px */



html{
    font-size: 100%;
}
body{
    padding:2rem
}
.header{
    background-color: #686de0;
    padding: 1rem;
    display:flex;
    padding:2rem;
    border-radius: 0.5rem;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}
.header .navbar a{
    text-decoration: none;
    color: white;
    margin-left: 1rem;
}
.header .site-name{
    font-weight: bold;
    font-size: 2rem;
    margin-right: 1rem;
    color: white;
}
.main{
    /* background-color:#eb4d4b ; */
    /* padding: 1rem; */
    margin-bottom: 1rem;
    display:flex;
    gap: 1rem;
    color: white;
}
.sidebar{
    background-color: #30336b ;
    /* margin-bottom: 1rem; */
    flex-basis: 33.33%;
    display: flex;
    justify-content: center;
    /* align-items: center;       it didn't let my boxex fit the sidebar */
    font-size: 1rem;
    font-weight: bold;
    border-radius: 0.5rem;
    padding: 1rem;
    flex-direction: column;
    gap: 0.5rem;
}
.sidebar .box{
    background-color: #7ed6df;
    padding:1rem;
    border-radius: 0.5rem;
    text-align: center;
    align-content: center;
    height: 5rem;
    flex-basis: 1;
    justify-content: center;
    
}

.content{
    background-color: #535c68;
    padding:1rem;
    flex-basis: 66.67%;
    border-radius: 0.5rem;
}
.content .trip-list{
    /* background-color:yellow; */
    /* padding: 1rem; */
    /* margin-bottom: 1rem; */
    display:flex;
    gap: 0.5rem;
    flex-wrap: wrap;

}
.content .trip-list .box{
        background-color: #7ed6df;
        flex-grow: 1;
        display: flex;
        text-align: center;
        height: 5rem;
        justify-content: center;
        align-items: center;
        border-radius: 0.5rem;
        flex-basis: calc(33.33% - 0.5rem);
}

.second-main{
    /* background-color: #6ab04c; */
    margin-bottom: 1rem;
    /* padding:1rem; */
    display: flex;
    /* flex-direction: row-reverse; */
    gap: 1rem;
}
.intro-box{
    background-color:#be2edd;
    /* margin-bottom: 1rem; */
    align-content: center;
    justify-content: center;
    padding: 2rem;
    border-radius: 0.5rem;
    color:white;
}
.about-section{
    background-color: #f0932b;
    padding: 1rem;
    border-radius: 0.5rem;
    color: white;
    display: flex;
}
.footer{
    background-color: #f6e58d;
    padding: 1rem;
    display: flex;
    border-radius: 0.5rem;
    justify-content: center;
    align-content: center;
}










/* @media (max-width : 768px){
    .box{
        background-color: yellow;
    }
}
@media print {
    .mybox{
        font-size: 7rem;
    }
}
@media print, screen{

}
@media (hover:hover){
    .html{
        color:red;
    }
} */