﻿/* Exclusive CSS for the Generator List page */
.generator-button {
    width: 100%;
    height: 100%;
    background-color: white;
    box-shadow: 0px 0px 75px rgba(0, 0, 0, 0.3);
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    margin-top: 24px;
}

@media screen and (max-width: 1200px) {
    .generator-button {
        box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.3);
    }
}

.generator-button-hover-text {
    opacity: 0;
    transform: scale(0.7);
    transition: all 0.3s ease-in-out;
    background-color: rgba(14, 78, 228, 0.5);
    color: white;
    padding: 22px;
    font-size: 210%;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    right: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    text-shadow: 2px 2px 4px #000000;
}

.generator-button-hover-text-hover {
    opacity: 100;
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

.generator-button-image {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.generator-button-title {
    color: black;
    padding: 22px;
    font-size: 42px;
}


