@font-face {
        font-family: 'PP Writer';
        src: url('fonts/PPWriter-Thin.woff2') format('woff2');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
}

@font-face {
        font-family: 'Petitfleur';
        src: url('fonts/PETIFL__\ copy.TTF') format('ttf');
        font-weight: 500;
        font-style: italic;
        font-display: swap;
}

body{
    margin:0;
    /* background-color: #251a13;
    background: radial-gradient(circle, #1c1008 15%, #110903 100%); */
    background-image: url('imgs/flame.gif');
    background-size: cover;      
    background-repeat: no-repeat;
    background-position: center;  
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    min-height:100vh;
}

.titlecontainer{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    height:2em;
    width: 100%;
    padding:0;
    margin-top: 7em;
}

.cursive{
    font-family: 'Petitfleur', cursive;
    font-size: 12em;
    color: rgba(159, 198, 208, 0.8);
    margin:0;
}

.swap-text-container {
    position: relative;
    display: inline-block;
    width: 15em;
    height: 2em;
    font-size: 2em;
    margin: 3em;
    font-family: 'PP Writer', serif;
    color: rgba(159, 198, 208, 0.8);
    text-align: center;
}

.swap-text-container span {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 1s ease;
}

.swap-text-container .original-text {
    opacity: 1;
}

.swap-text-container .hover-text {
    opacity: 0;
    transition: opacity 1s ease;
    font-style: italic;
    cursor: url('imgs/match1.png'), auto;

}

.swap-text-container:hover .original-text {
    opacity: 0;
}

.swap-text-container:hover .hover-text {
    opacity: 1;
}

.link
{
    color: rgba(159, 198, 208, 0.8);
    text-decoration: none;
    cursor: url('imgs/match1.png'), auto;
}