@import url('https://fonts.googleapis.com/css2?family=Carattere&family=Ephesis&family=Ms+Madi&display=swap');
body {
    background-color: #F3F3F3;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
    color: #12263a;
    margin: 0;
    padding: 0;
    width: 100%;
}

main {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    justify-content: center;
}

h1, h2, h3, h4 {
    font-family: "Ephesis", serif;   
    font-weight: normal;
}

#pageContent {
    transition: filter 0.2s ease;
}

#pageContent.blurred {
    filter: blur(5px);
}