html,
body {
    background-color: rgb(20, 14, 80);;
    font-family: "Kode Mono", monospace;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

video {
    width: 100dvw;
    min-height: 100dvh;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.header-text {
    position: absolute;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    transform: translateY(-7rem);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.header-text h1 {
    font-weight: 600;
   /* font-size: 1.75rem;*/
    text-transform: uppercase;
    line-height: 1;
    margin-block-start: 0.4em;
    margin-block-end: 0.4em;
}

.header-text p {
    display: block;
    font-weight: 400;
    font-size: 1rem;
    margin-block-start: 0.4em;
    margin-block-end: 0.4em;
    margin-left: 5vw;
    margin-right: 5vw;
}

.header-text a:link {
    color: rgb(121, 197, 241);
}

.header-text a:visited {
    color: rgb(121,197,241);
}

.header-text div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}

.description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    color: rgb(255, 157, 0);
    background-color:rgba(0, 0, 0, 0.0);
    padding: 2rem;
}

.description p {
    max-width: 40rem;
    margin-inline: auto;
    line-height: 1.6;
}

.description a:link {
    color: rgb(255, 157, 0);
}

.description a:visited {
    color: rgb(255, 157, 0);
}

/*
.largeScreen div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;}

.midScreen div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;}

.smallScreen div {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
}
    */


@media screen and (min-width: 769px){

    .header-text img {
        width: 331px;
        height: 128px;
    }
    .header-text div {
        padding-bottom: 15px;
    }
    .header-text .midScreen {
        display: none
    }
    .header-text .smallScreen {
        display: none
    }
}

@media screen and (min-width: 481px) and (max-width: 768px){
    .header-text img {
        width: 236px;
        height: 91px;
    }
    .header-text div {
        padding-bottom: 10px;
    }
    .header-text .largeScreen {display: none}
    .header-text .smallScreen {display: none}

}

@media screen and (max-width: 480px){
    .header-text img {
        width: 184px;
        height: 71px;
    }
    .header-text div {
        padding-bottom: 8px;
    }
    .header-text .midScreen {display: none;}
    .header-text .largeScreen {display: none;}
}