<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body{
    padding: 0px;
    margin: 0px;
}
#container {
    width: 100%;
    height: 1000px;
}
#header{
    width: 100%;
    background-color: rgb(26, 40, 47);
    text-align: center;
}
#header img{
    width: 15%;
}
#mainArticle {
    display: flex;
    flex-direction: column;
    width: 100%;
}
#title{
    padding: 20px;
}
#content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    align-items: center;
    flex-basis: 66%;
}

#mainPhoto {
    flex-grow: 1;
}

#mainPhoto img {
    size: 100%;
}

#mainText {
    padding: 10px;
    flex-grow: 3;
}

#actorBox {
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#actorList {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.actor {
    text-align: center;
    width: 100%;
}
#mainActor{
    width: 100%;
}
#topActor {
    height: 525px;
    width: 50%;
    min-width: 390px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.stat{
    width: 45%;
    border: 1px dotted black;
    border-radius: 10px;
    transition: 1s;
}
.stat:hover{
    flex-grow: 1;
    background-color: rgb(170, 170, 170);
}
#pictureBox{
    margin: 20px 0px;
    text-align: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    height: 600px;
    width: 100%;
    flex-wrap: wrap;
    position: relative;
}
.picture{
    height: 32%;
    width: 45%;
    transition: 1s;
}
.picture img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.picture:hover{
    flex-grow: 2;
}
#altArticles{
    padding-top: 10px;
    display: flex;
    width: 100%;
    flex-flow: row wrap;
    justify-content: space-around;
    align-content: space-around;
}
.articleLink{
    width: 100%;
}
.articleLink a{
    color: black;
    text-decoration: underline;
}
.article{
    width: 30%;
    padding: 10px;
}
#footer{
    padding: 10px;
    text-align: center;
    background-color: rgb(26, 40, 47);
    color: white;
}</pre></body></html>