.block {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: rgb(253, 233, 209);
}

.video {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 10px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    background-color: rgba(26, 26, 26, 0.5);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}

.video a {
    text-decoration: none;
    color: #dad4d4;
    font-size: 30px;
    transition: all 0.3s ease;
    border: 2px solid #000000;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 10px;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.305);
}

.video a:hover {
    /* transform: scale(1.1); */
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 20px rgb(253, 233, 209);
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
}

.video h1 {
    margin-bottom: 30px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 30px;
    color: #dad4d4;
    text-shadow: 4px 4px 8px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    width: 100%;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
    font-size: 30px;
    color: #dad4d4;
}

iframe {
    width: 1000px;
    height: 600px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.side_picture_1 {
    width: 400px;
    height: 750px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 100px;
    margin-right: 50px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);   
}

.side_picture_2 {
    width: 400px;
    height: 750px;
    margin-top: 100px;
    margin-bottom: 100px;
    margin-left: 50px;
    margin-right: 100px;
    border-radius: 20px;
    transform: scaleX(-1);
    filter: FlipH;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);   

}