
*{
    box-sizing:border-box;
}

body{

    margin:0;
    /*
    background:
        repeating-linear-gradient(
            45deg,
            #1f2858,
            #1f2858 20px,
            #28356d 20px,
            #28356d 40px
        );
    */
    background-image: url("images/met_bg_2f3x.jpg");
    background-repeat: repeat;

    font-family:Verdana, Geneva, sans-serif;

    color:#111;
}

.banner{

    background:#38009e;
    color:white;

    border-bottom:3px solid white;
    padding:6px;

}

.window{

    width:min(1200px,90vw);

    margin:40px auto;

    border:3px solid black;

    background:#c0c0c0;

    box-shadow:
        8px 8px black;

}

.titlebar{

    background:linear-gradient(
        to right,
        #38009e,
        #d00089
    );

    color:white;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:6px 10px;

    font-weight:bold;

}

.buttons span{

    display:inline-block;

    width:22px;

    text-align:center;

    margin-left:5px;

    background:#c0c0c0;

    color:black;

    border:2px outset white;

}

.content{

    display:flex;

    min-height:650px;

}

.sidebar{

    width:220px;

    background:#d8d8d8;

    border-right:3px ridge white;

    padding:20px;

}

.sidebar ul{

    list-style:square;

    padding-left:20px;

}

.sidebar a{

    color:navy;

    text-decoration:none;

}

.sidebar a:hover{

    text-decoration:underline;

}


.portfolio{

    flex:1;

    padding:30px;

}

.gallery{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:20px;

    margin:30px 0;

}

.gallery img{

    width:70%;

    max-width:700px;

    border:5px ridge white;

    background:white;

}

.gallery button{

    width:50px;

    height:50px;

    font-size:1.4rem;

    background:#dcdcdc;

    border:3px outset white;

    cursor:pointer;

}

.gallery button:active{

    border:3px inset white;

}

.description{

    background:white;

    border:3px inset white;

    padding:20px;

    line-height:1.6;

}

.overview{

    background:white;

    border:3px inset white;

    padding:20px;

    line-height:1.6;

}

.dreamCatcher{
    display: flex;
    justify-content: center;
    align-items: center;

}

.mainDesc{

    background:lightGray;

    border:3px inset white;

    padding:10px;

    line-height:1.6;

}

@media (max-width:900px){

    .content{

        flex-direction:column;

    }

    .sidebar{

        width:100%;

        border-right:none;

        border-bottom:3px ridge white;

    }

    .gallery{

        flex-direction:column;

    }

    .gallery img{

        width:100%;

    }

}