@font-face {
    font-family: ;
    src: url();
}

    * {
        cursor: ;
        font-family: cursive;
    }

    ::-webkit-scrollbar {
        background: linear-gradient(transparent, #ff464f, transparent);
    }

    ::selection {
        background-color: #ff464f;
    }

    html {
        height: 100vh;
        width: 100vw;
        scrollbar-width: thin;
        scrollbar-color: #ff464f transparent;
    }

    body {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        min-height: 98%;
        background: #fdfdfd;
        color: #0c0c0c;
    }

    footer {
        display: flex;
        position: fixed;
        bottom: 0;
        right: 0;
        z-index: 1;
        width: 99%;
        padding-top: 0.5em;
        color: #e4e4e4;
        font-size: 2em;
        text-align: left;
    }
    
    main {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        text-align: center;
    }

    content {
        height: 50%;
        width: 100%;
        position: fixed;
        top: 33.5%;
        right: 2%;

    }

    a {
        color: #ff1a25;
    }
    
    a:hover {
        color: #ff8f94;
        font-style: oblique;
        letter-spacing: 0.3em;
    }
    
    .a2 {
        color: #ff1a25;
        text-decoration: none;
    }

    .a2:hover {
        color: #ff1a25;
        font-style: normal;
        font-weight: bolder;
        letter-spacing: 0.3em;
        text-decoration: none;
    }

    #yippee {
        height: 17em;
        transition: all 1s ease;
    }

    #yippee:hover {
        transform: scale(110%) rotate(3deg);
        transition: all 3s ease;
    }