.photo-display{
    width: 100%;
    height: 50%;
    margin: auto;
    display: flex;
}
.photo-row{
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    width: 95%;
    vertical-align: middle;
    align-items: center;
    justify-content: space-evenly;
    display: flex;
    background-color: #ffa8a8a9;
    border-radius: 8px;
}
.photo-row::after {
  content: "";
  clear: both;
  display: table;
}
.photo-standby{
    width: 25%;
    vertical-align: middle;
    align-items: center;
    padding: 5px;
}
.photo-standby img{
    filter: grayscale(90%);
    max-width: 180px;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: scale-down;
    opacity: .8;
    animation-name: hideDisplay;
    animation-timing-function: ease-out;
    animation-duration: .15s;
    z-index: -1;
}

.photo-standby img:hover{
    filter: grayscale(0%);
    opacity: 1;
    animation-name: showDisplay;
    animation-timing-function: ease-out;
    animation-duration: .15s;
    transform: scale(1.25,1.25);
    z-index: 1;
}

.photo-section{
    width: 85%;
    max-width: 1000px;
    min-width: 200px;
    margin: auto;
    display: block;
    justify-content: center;
    align-items: center;
    border: 2px double #bb7777;
    background-color: #ddccbb;
    padding-top: 10px;
    border-radius: 5px;
}
#highlight-image{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: scale-down;
}

.column.side{
    width: 10%;
}
.column.middle{
    width: 80%;
}
.column{
    float: left;
    height:0%
}

@keyframes showDisplay {
    0% {transform: scale(1, 1);}
    100% {
        
        transform: scale(1.25, 1.25);
        }
}
@keyframes hideDisplay {
    0% {transform: scale(1.25, 1.25);}
    100% {
        transform: scale(1.0, 1.0);
        }
}
.page-body{
    margin: auto;
    width: 70%;
    min-width: 280px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    min-width: 380px;
    
}
.page-body a{
    color: #757263;
    text-decoration: underline;
}

.overview {
    width: 80%;
    max-width: 600px;
    background-color: #889999;
    box-shadow: 1px 1px 3px rgb(76, 97, 89);
    padding: 3%;
    border: 2px solid #837f7b;
    color: #330333;
    border-radius: 5px;
    align-self: center;
}
.overview p{
    font-size: large;
    color:#3b443d;
    background-color: #eaebf0a2;
    box-shadow: 2px 2px 2px rgba(88, 18, 85, 0.63);
    padding:  8px;
    border-radius: 8px;
    width: auto;
}
.design{
    width: 80%;
    align-self: center;
}
.overview p{
    text-align: left;
    font-size: 18px;
}

.section-header p{
    color: rgb(126, 92, 92);
    font-weight: bolder;
    margin: auto;
    font-size: 24px;
    text-align: center;
}
p{
    font-family: "Kantumruy Pro", sans-serif;;
}

video source{
    margin: auto;
    margin-left: 50%;
}

.line-break{
    height: 2px;
    background-color: #c4c1b3;
}

.design h3{
    font-family: "Kantumruy Pro", sans-serif;;
    text-align: center;
    color: #49504a;
    font-size: x-large;
    font-weight: bolder;
}
.design h4{
    color:#4b424b;
    font-size: large;
    font-weight: bold;
    font-family: "Kantumruy Pro", sans-serif;;
}
.section-title{
    border-radius: 12px 12px 0px 0px;
    color:#2f3b32;
    padding: 1px 0px;
    margin: 2px 0px;
    background-color: #b3c7b8;
    
}
.design-section{
    max-width: 480px;
    border-radius: 12px;
    box-shadow: 2px 2px 4px #484a5e;
    background-color: #ecdccb;
    padding: clamp(4px, 1.5vw, 8px) clamp(12px, 1.5vw, 24px);
    border:#676e69 2px solid;
}