@import url('https://fonts.googleapis.com/css2?family=Eagle+Lake&family=Uncial+Antiqua&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #f6f3ef;
}

.container {
    max-width: 1080px;
    margin: auto;
}

.looty-container {
    margin: auto;
    text-align: center;
    color: #4d4d4d;
    font-size: 16px;
    font-family: "Eagle Lake", serif;
    font-weight: 400;
    font-style: normal;
    padding: 80px 20px 30px;
}

.looty-container h1 {
    font-family: "Uncial Antiqua", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    color: #2e2e2c;
    opacity: 0;
    animation: fadeInH 2s forwards;
}

.looty-container p:first-of-type {
    animation: fadeInH 2s forwards 1s;
    display: block;
}

.hoard-container {
    display: flex;
    flex-wrap: nowrap;
    margin: 80px 0 15px;
}

.looty-container h2 {
    font-family: "Uncial Antiqua", system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #b28d5e;
    text-align: left;
    opacity: 0;
    margin-top: 40px;
    transform: translateY(45%);
    animation: fadeInP 2s forwards 1.5s;
    width: 150px;
    margin: 0;
}

.tagline {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-size: 18px;
    text-align: left;
    color: #4a5a5a;
    width: 190px;
}

.tagline h3 {
    opacity: 0;
    transform: translateY(45%);
    animation: fadeInP 2s forwards 1s;
}

.looty-container p {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(45%);
    animation: fadeInP 2s forwards 1s;
}

p span {
    text-transform: uppercase;
    font-size: 28px;
    color: #c25757;
}

.looty {
    width: 250px;
    transform: translateX(-150%);
    animation: slideInL 0.5s forwards 0.5s;
}

.footer {
    color: #b28d5e;
    margin-top: 40px;
}

.footer p {
    margin-bottom: 0px;
}

.footer a {
    font-size: 50px;
    color: #4a5a5a;
    margin-right: 10px;
}

.footer a:hover {
    color: #000;
}

.footer a:visited {
    color: #4a5a5a;
}

.copyright {
    font-size: 12px;
    margin-top: 20px;
}


@media screen and (min-width: 768px) {
    .looty-container {
        font-size: 18px;
        padding: 80px 50px 30px;
    }
    
    .looty-container h1 {
        font-size: 72px;
    }

    .hoard-container {
        margin: 25px 0 20px;
    }

    .looty-container h2 {
        font-family: "Uncial Antiqua", system-ui;
        font-weight: 400;
        font-style: normal;
        font-size: 46px;
        color: #7c4963;
        text-align: left;
        opacity: 0;
        margin-top: 40px;
        transform: translateY(45%);
        animation: fadeInP 2s forwards 1s;
        width: 215px;
    }

    .tagline {
        font-size: 24px;
        width: 250px;
    }

    .looty-container p {
        margin-bottom: 20px;
    }

    p span {
        font-size: 36px;
    }

    .looty {
        width: 350px;
        transform: translateX(-160%);
    }

    .footer {
        font-size: 24px;
        margin-top: 80px;
    }

    .copyright {
        font-size: 14px;
        margin-top: 80px;
    }
}

@media screen and (min-width: 1080px) {
    .looty-container h1 {
        font-size: 88px;
        margin-bottom: 40px;
    }

    .looty-container {
        font-size: 20px;
        padding: 120px 50px 30px;
    }

    .looty {
        width: 350px;
        transform: translateX(-350%);
        animation: slideInL 0.5s forwards 0.25s;
    }

    .hoard-container {
        margin: 80px 0 20px;
    }

    .looty-container p {
        margin-bottom: 25px;
    }

    .footer a {
        font-size: 70px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 3480px) {
    .container {
        max-width: 1800px;
    }

    .looty-container {
        font-size: 32px;
        padding: 300px 50px 30px;
    }

    .looty-container h1 {
        font-size: 180px;
        margin-bottom: 40px;
    }

    .looty {
        width: 800px;
        transform: translateX(-350%);
        animation: slideInL 0.5s forwards 0.125s;
    }

    .hoard-container {
        margin: 80px 0 50px;
    }

    .looty-container h2 {
        font-size: 82px;
        margin-top: 70px;
        width: 400px;
    }

    .tagline {
        font-size: 48px;
        width: 500px;
    }

    .looty-container p {
        margin-bottom: 50px;
    }

    p span {
        font-size: 64px;
    }

    .footer {
        font-size: 48px;
        margin-top: 50px;
    }

    .footer a {
        font-size: 150px;
        margin-right: 20px;
    }

    .copyright {
        font-size: 32px;
    }
}

@keyframes fadeInH {
    to {
        opacity: 1;
    }
}

@keyframes fadeInP {
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}

@keyframes slideInL {
    to {
        transform: translateX(0%);
    }
}