/* standard selectors */

.inline {
    display: inline;
}

.inlineblock {
    display: inline-block;
}

.block {
    display: block;
    padding: 5px;
    margin: 10px;
}

.flex {
    display: flex;
    gap: 10px;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 1;
}

/** {
    outline: 2px solid red;
}*/


/* end standard selectors */

html {
    scroll-behavior: smooth
}

body {

}

* {
    font-family: Arial, Helvetica, sans-serif;
    font-size: calc(20px + 1vw);
}

@font-face {
    font-family: reviewfont;
    src: url(./files/Noteworthy-Lt\ 2.ttf);
}

@font-face {
    font-family: cute;
    src: url(./files/Cutewritten-Regular.ttf);
}

@font-face {
    font-family: hpsf;
    src: url(./files/HPSimplified.ttf);
}

@font-face {
    font-family: hpsfrg;
    src: url(./files/HPSimplified_Rg.ttf);
}

.scrolltext {
    text-align: center;
    margin-top: 90vh;
    font-family: hpsfrg;
}

.maincontent {
    margin-top: 40px;
    padding: 10px;
    display: flex;
    justify-content: center;
    padding-left: 18%;
    padding-right: 18%;
}

.header2 {
    display: flex;
    flex: 1;
    z-index: 2;
    margin-top: 10vh;
    display:flex;
    justify-content: center;
    width: 100%;
    position: sticky;
    top: 3vh;
    font-size: min(3vw,40px);
}

.header {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: -1;
    top: 0;
    display: flex;
    justify-content: center;
    align-content: center;
}

.header video{
    max-width: 1000px;
}

.reviews {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.reviewcontent {
    margin-left: 5px;
    margin-right: 5px;
}

textarea{
    height: 160px;
    min-width: 260px;
    margin-top: 80px;
    margin-bottom: 20px;
}

.header,
.scrolltext {
    opacity: 1;
    animation-name: fadeInOpacity;
    animation-iteration-count: 1;
    animation-timing-function:ease-out;
    animation-duration: 2s;
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.name {
    display: inline-block;
    font-weight: 800;
    padding: 1px;
    content: ;
    padding-left: 6px;
    padding-right: 6px;
    /*border: 3px solid rgb(71, 71, 71);
    border-radius: 10px;
    margin-top: 10px;*/
}

.reviewcontent .text {
    font-family: cute;
    width: max(600px 60vw);
    align-self: center;
    display: flex;
    flex-direction: column;
    font-size: calc(800px+0.2vw);
}

a {
    background-color: white;
    font-family: hpsfRg;
    text-decoration: none;
    color: black;
}

.header2 a {
    font-size: 230%;
    padding: 0.1em 0.18em 0.1em 0.18em;
    text-align: center;
    border: 2px solid grey;
    border-radius: 0.4em;
    box-shadow: 2px;
    filter: drop-shadow(1px 2px 3px black);
}

.footerbox {
border: 2px solid rebeccapurple;
}

.footer {
    display: flex;
    flex:1;
    justify-content: space-between;
    margin: 5%;
    padding-bottom: 12px;
    text-decoration:underline;
}

button{

}