@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&family=Brygada+1918:ital,wght@0,400..700;1,400..700&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Libertinus+Mono&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Pinyon+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}


html{
    background-color: #47476b;
}

h2.name {
    text-align: left;
    font-size: 200%;
    font-family: Libre Baskerville;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
    text-transform: none;
    letter-spacing: .02em;
    color: #ffffff; 
}

p {
    font-size: 100%;
    font-family: Libre Baskerville;
    font-weight: 400;
    font-style: normal;
    line-height: 1.6em;
    text-transform: none;
    letter-spacing: .02em;
    color: #ffffff; 
}

/* unvisited link */
a:link {
    color: #ffffff;
    text-decoration: none;
}

/* visited link */
a:visited {
    color: #ffffff;
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: #ccff00;
}

/* selected link */
a:active {
    color: #ccff00;
    text-decoration: none;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Libre Baskerville;
}

.container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 20px;
}

.left-column {
    flex: 1 1 200px;
    padding: 20px;
}

.left-column h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.nav-links a {
    font-size: 100%;
    font-family: Libre Baskerville;
    font-weight: 400;
    font-style: normal;
    line-height: 1em;
    text-transform: none;
    letter-spacing: .02em;
    color: #ffffff; 
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.nav-links a:hover {
    color: #ccff00;
}

.right-column {
    flex: 2 1 600px;
    padding: 20px;
}

.media-item {
    margin-bottom: 30px;
}

.media-item img, .media-item video {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
}

.caption {
    font-size: 100%;
    margin-bottom: 5px;
    color: #ffffff; 
}

.full-caption {
    display: none;
    font-size: 90%;
    color: #ffffff; 
}

.media-item.active .full-caption {
    display: block;
}

/* Mobile styling */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-column {
        width: 100%;
        padding: 10px;
    }

    .right-column {
        width: 100%;
        padding: 10px;
    }

}

.resp-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
    margin-bottom: 10px;
}

.resp-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

