:root {
    --rs2-color-primary: hsl(190, 85%, 29%);
}


body,html {
    font-family: 'montserrat', 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    background-color: hsl(190, 85%, 4%);
    color: white;
}

h1 {
    font-size: 2.5rem;
    line-height: 2.75rem;
    font-weight: 700;
    margin: 1rem 0;
    text-align: center;
    color:white;
    text-shadow: hsl(190, 85%, 59%) 0px 0px 1rem, hsl(190, 85%, 39%) 0px 0px 2rem;
}

h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 500;
    margin: 1rem 0;
    text-align: center;
    color: hsl(190, 85%, 49%);
}

h3 {
    font-size: 2rem;
    line-height: 2.25rem;
    font-weight: 400;
    margin: 1rem 0;
    text-align: center;
    color: hsl(190, 85%, 59%);

}

h4{
    font-size: 1rem;
    line-height: 1.25rem;
    font-weight: 300;
    margin: -2.5rem 0 1rem 0;
    text-align: right;
    color: hsl(190, 85%, 69%);
    width: 100%;    padding-right: .5rem;
}

h5{
    color: hsl(190, 85%, 69%);
    font-size: 1.5rem;
    line-height: 1.75rem;
    font-weight: 500;
    margin: 0.5rem 0;
    text-align: center;
}
p {
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: white;
    text-align: center;
    line-height: 2rem;
}

a {
    color: hsl(190, 85%, 59%);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.rs--videoheader {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 5.5;
    max-height: 75vh;
    overflow: hidden;
    background-color: hsl(190, 100%, 80%);
    border-bottom: 1px solid var(--rs2-color-primary);
}

@media screen and (orientation: portrait) {
    .rs--videoheader {
        height: 30vh;
    }
}

.rs--video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rs--video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.rs--imageheader {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0);
    transition: all 2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.rs--imageheader img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}


.rs--menu {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1px;
    margin-bottom: 1rem;
}

.rs--menu a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: var(--rs2-color-primary);
    color: white;
    padding: .5rem 1rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.5rem;
    flex: 1 1 auto;
    text-align: center;
}

a.menuToggle {
    display: none;
    cursor: pointer;
}

@media screen and (max-width: 1100px) {

    .rs--menu a {
        display: none;
        flex:1 1 100%;
    }

    a.menuToggle {
        display: block;
    }


}

.dv--content {
    display: flex;
    margin: 0 auto 1rem auto;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    max-width: 80rem;
    padding-bottom: 50vh;
}

.dv--content img {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 1rem 0;
}

.ytvideo{
    width:100%;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 1rem 0;
}

hr{
    width:90vw;
    height: 1px;
    background-color: hsl(190, 85%, 29%);
    border: none;
    margin: 1rem 0;
    min-width: 100%;
}

.audioplayer audio{
    width: 100%;
    display: block;
}

.audioplayer {
    width: 100%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-container{
    width:calc(100% - 2rem);
    max-width: 600px;
    margin: 1rem auto;
    padding: 1rem;
    background-color: hsl(190, 85%, 10%);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 1rem;  
}

input,textarea,button,select {
    padding: 0.5rem;
    border: 1px solid hsl(190, 85%, 29%);
    border-radius: 4px;
    background-color: hsl(190, 85%, 10%);
    color: white;
    font-size: 1rem;
    font-size: 1.5rem;
}

button {
    background-color: var(--rs2-color-primary);
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out;
    font-size: 2rem;
}

label {
    font-size: 1.5rem;
    color: hsl(190, 85%, 89%);
}