/* VIDEO MODAL */

html{
    scroll-behavior: smooth;
}

.modal{
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal:target{
    display: flex;
}

.modal-content{
    position: relative;
    width: 80%;
    max-width: 800px;
}

.close{
    position: absolute;
    top: 10px;
    right: 15px;
    background: white;
    color: black;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}

iframe{
    width: 100%;
    height: 450px;
    border: none;
}

