body{
    padding: 16px;
    background-color: rgb(23, 23, 23);
    padding-bottom: 50px;
}


nav {
    text-align: center;
    a:link {
        color: rgb(255 255 255 /1);
        padding-top: 10px;
    }
    a:visited {
        color: rgb(255 255 255 /1);
    }
    a:hover {
        color: rgb(186 186 186 /1);
        transform: translateY(-5px);
    }
    a {
        text-decoration: none;
        display: inline-block;
        margin-left: 125px;
        margin-right: 125px;
        font-family: "IM Fell Great Primer SC", serif;
        font-weight: 400;
        font-style: normal;
        font-size: 20px;
    }
}

h1{
    color: rgb(255, 255, 255);
    font-family: "IM Fell Great Primer SC", serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    font-size: 60px;
}

main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.ghost{
    width: 445px;
    height: 650px;
    object-fit: cover;
    animation: float 1s steps(5, jump-none) infinite ;
    padding-left: 150px;
    padding-top: 100px;
}

/* img{
    padding-top: 300px;
    padding-left: 300px;
} */

figure{
    padding-left: 200px;
}


.sprite{
    color: rgb(255, 255, 255);
    font-family: "IM Fell Great Primer SC", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 40px;
}


.sprite-sheet{
    opacity: 0.10;
    transition: opacity 500ms;
}

.sprite-sheet:hover{
    opacity: 1;
}


@keyframes float{
    from{
        object-position: 0% 0%;
    }
    to {
        object-position: 100% 0%;
    }
}



/* @media screen and (min-width: 100px) {
    main {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (min-width: 1200px) {
    main {
        grid-template-columns: repeat(2, 1fr);
    }} */