@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Fjalla+One&family=Pirata+One&family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

.card-text {
    text-decoration: none;
    color: rgb(50, 50, 50);
    font-size: large;
}

.card-button {
    position: relative;
    width: 33%;
    max-width: 150px;
}

#treasures-untold-image {
    position: relative;
    height: 150px;
    background: url('/assets/images/links/banner_small.webp') no-repeat top center;
    background-color: #0B0C13;
    background-size: auto min(150px);
}

#treasures-untold-title h2 {
    font-size: 2.5rem;
    color: white;
    font-family: 'Pirata One', serif;
    margin-top: 5%;
}

#watch-o-tron-image {
    position: relative;
    height: 150px;
    background-color: rgb(240, 240, 240);
    background-size: auto min(150px);
}

.wot-logo {
    height: 35px;
}

#watch-o-matic-image {
    position: relative;
    height: 150px;
    background: url('/assets/images/links/wom_code.webp') no-repeat top center;
    background-size: cover;
}

#watch-o-matic-title h2 {
    display: inline-flex;
    font-size: 2.5rem;
    color: white;
    font-family: 'Roboto Mono', serif;
    margin-top: 5%;
}

#cursor {
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    animation: tick 1s steps(1) infinite;
}

@keyframes tick {
    from { opacity: 0 }
    50% { opacity: 1 }
    to { opacity: 0 }
}

#dragons-are-cool-image {
    position: relative;
    height: 150px;
    background: url('/assets/images/links/dac-background.webp') no-repeat center center;
    background-size: cover;
}

#dragon-logo {
    position: absolute;
    height: 130px;
}

#dragons-are-cool-title h2 {
    position: relative;
    border-radius: 10px;
    padding: 6px 15px;
    color: whitesmoke;
    background-color: rgba(89, 2, 2, 0.5);
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
}

#bgfc-image {
    position: relative;
    height: 150px;
    background: url('/assets/images/links/bgfc-hero.webp') no-repeat center center;
    background-size: cover;
}

#bgfc-title h2 {
    background-color: rgba(59, 77, 102, 0.8);
    width: fit-content;
    position: relative;
    left: -16px;
    padding: 0.5rem 0.5rem 0.5rem 20%;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    box-shadow: 2px 2px 2px #3a3a3a;
    font-size: 2rem;
    font-family: 'Fjalla One', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    color: #f5f5f5;
}

@media (min-width: 400px) {
    #treasures-untold-title h2 {
        font-size: 3rem;
    }
    .wot-logo {
        height: 40px;
    }
    #dragons-are-cool-title h2 {
        padding: 6px 15px;
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    #treasures-untold-title h2 {
        font-size: 3.2rem;
    }
    .wot-logo {
        height: 50px;
    }
}