@import url('https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Newsreader:ital,opsz,wght@0,6..72,200..800;1,6..72,200..800&display=swap');
@font-face {
    font-family: sinistre;
    src: url(fonts/SinistreVF.woff2);
}
.container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
}
.content {
    max-width: 800px;
    min-width: 360px;
    height:fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
    flex-direction: column;
}
.textbox {
    z-index: 1; 
    max-width: 800px;
    min-width: 360px;
    height:fit-content;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding: 20px;
    padding-top: 8px; 
    padding-bottom: 12px;
    background: rgba(60, 50, 60, 0.7); 
    color: white;
    border-radius: 0px;
    border-width: 1px;
    border-color:rgb(100, 90, 100);
    border-style: solid;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    flex-direction: column;
}
.navbox {
    flex: 0 0 40px;
    height: 40px;
    width: 357px;
    margin: 0px;
    padding: 20px;
    background: rgb(190, 180, 190); 
    color: rgb(60, 55, 65);
    border-radius: 0px;
    border-width: 1px;
    border-color:rgb(100, 90, 100);
    border-style: solid;
    box-shadow: 3px 3px rgba(0,0,0,0.5);
    line-height:8px;
}
@media (min-width: 800px) {
    .container {
        flex-direction: row;
    }
    .navbox {
        height: 335px;
        flex: 0 0 40px;
        width: 40px;
    }
}
h1 {
    margin: 0;
    font-size:25px;
    padding-bottom: 6px;
    font-family:sinistre, Times, 'Times New Roman', serif;
    font-weight: bold;
    font-style: italic;
    text-shadow: 1.5px 1.5px 1px rgba(0,0,0,0.5);
}
p {
    font-size: 16px;
    font-family:Newsreader, Times, 'Times New Roman', serif;
    text-shadow: 1.5px 1.5px 1px rgba(0,0,0,0.5);
    margin: 0px;
    margin-bottom: 6px;
}
a {
    color: rgb(120, 60, 110);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover {
    filter: blur(2px);
    color: rgb(140,100,140);
}