/* math.html */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&display=swap');
body {
    font-family: 'Caveat', cursive;
    background-image: url(Website_Background.png);
    background-size: 100%;
}
.flex-parent{
    display: flex;
}

.jc-center{
    justify-content: center;
}

button.margin-right{
    margin-right: 20px;
}
.title{
font-size: 65px;
}
 

.math_game {
    width: 225px;
    height: 225px;
    margin: 10px;

    border: none;
    background-color: transparent;
    cursor: pointer;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border-radius: 20px;
    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.swamp_strikers {
    background-image: url("Swamp-strikers.png");
}

.math_game:hover {
    transform: scale(1.08);
    transition: transform 0.2s ease;
}

.home_button {
    width: 200px;
    height: 200px;
    
    background-image: url("Fish_button.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    border: none;
    background-color: transparent;

    cursor: pointer;

    color: white;
    font-family: 'Caveat', cursive;
    font-size: 18px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);

    padding: 0;
    appearance: none;
    -webkit-appearance: none;

    justify-self: start;  /* move to left side of grid cell */
    align-self: start;    /* move to top */
    margin-left: 10px;    /* small spacing from edge */
}

.home_button:hover {
    transform: scale(1.1) rotate(-5deg);
    transition: transform 0.2s ease;
}

.home_button {
    display: inline-block;
}

.header-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.coming_soon{
    background-color: rgb(87, 181, 87);
    opacity: 0.8;
    color: white;
    font-family: 'Caveat', cursive;
    font-size: 30px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);

}
