@font-face {
    font-family: TimesNowLight;
    src: url(fonts/times-now-light.otf);
}
@font-face {
    font-family: FavoritLight;
    src: url(fonts/Favorit-Light.otf)
}
:root {
    --serif: TimesNowLight;
    --sans: FavoritLight;
}
::selection {
    background: #000000;
    color: #fffff2;
}
body {
    margin: 0;
    padding: 0;
    background-color: #fffff2;
    font-family: var(--serif);
    padding-bottom: 150px;
}

#heading {
    font-family: var(--serif);
    text-align: center;
    width: fit-content;
    font-size: 16px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 40px 20px 20px 20px;
    filter: drop-shadow(0px 4px 4px #bebebe);
    background-color: #ffffff;
    position: fixed;
    top: -20px;
    display: flex;
    left: 50%;
    transform: translate(-50%, 0%);
    text-decoration: none;
    color: #000000;
    transition: all 0.25s ease-in-out;
    z-index: 4;
}
#heading:hover {
    top: -10px;
}

#homepage {
    width: 100%;
    display: flex;
    flex-direction: row;
}
#yourworldoftext {
    position: fixed;
    width: 50%;
    height: 100%;
    border-right: 1px solid #616161;
    box-sizing: border-box;
}
#yourworldoftexttwo {
    display: none;
}
#blog {
    position: fixed;
    width: 50%;
    right: 0;
    display: flex;
    flex-direction: column;
    margin-top: 200px;
    padding: 20px;
    box-sizing: border-box;
}
#blogpost {
    width: 100%;
    padding: 20px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    margin: 200px auto auto auto;
    box-sizing: border-box;
}
#blog a {
    text-decoration: none;
    color: #000000;
    font-family: var(--serif);
    font-size: 24px;
    width: fit-content;
    border-bottom: 1px solid #fffff2;
}
#blog a:hover {
    border-bottom: 1px solid #000000;
}
#blog div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
#blog div span, .date {
    font-family: var(--sans);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 36px;
    font-family: var(--serif);
    font-weight: 300;
    margin: 0 0 5px 0;
}
#blogpost div {
    margin-bottom: 20px;
}
p {
    line-height: 24px;
}
#fab {
    z-index: 3;
    display: none;
    position: fixed;
    padding: 10px;
    bottom: 20px;
    right: 20px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 100px;
    width: 100px;
    height: 100px;

    justify-content: center;
    justify-items: center;
    align-content: center;
    align-items: center;
    text-align: center;

    flex-direction: column;
    font-family: var(--sans);
    text-transform: uppercase;
    font-size: 12px;

    box-sizing: border-box;
    cursor: pointer;
}

@media screen and (max-width: 750px) {
    #fab {
        display: block;
    }
    #yourworldoftext {
        display: none;
        width: 100%;
        height: 100%;
    }
    #yourworldoftexttwo {
        display: none;
        width: 100%;
        height: 100%;
        z-index: 2;

        position: fixed;
        box-sizing: border-box;
    }
    #blog {
        position: relative;
        width: 100%;
    }
    #blogpost {
        width: 100%;
    }
}