@import url('https://fonts.googleapis.com/css2?family=lemon&family=Baloo+Bhaina+2&display=swap');

body {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hello.gif');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    /* font-family: 'Lemon', cursive; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0px;
    padding: 0px;
    /*overflow: hidden;*/
}

#main {
    grid-column: 1/4;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.title {
    justify-content: center;
    text-align: center;
    grid-column: 1/4;
    padding: 10px;
    /* margin: 0 auto; */
    margin-top: 30px;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    font-size: 2.4rem;
    text-align: center;
    border-top: 1px solid #ff29ff;
    border-bottom: 1px solid #ff29ff;
    background: rgba(0, 0, 0, 0.4);
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #ff7cff;
    -webkit-text-stroke-width: 1px;
    text-shadow: 0px 0px 14px magenta;
    box-shadow: inset 0px 0px 17px 3px #ff29ff, 0px 6px 17px 0px #ff2cfe, 0px -4px 17px 3px #ff2cfe;
    border-radius: 20px;
    animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
    0% {
        transform: translateY(-1000%);
        opacity: 0;
    }

    20% {
        transform: translateY(-200%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.box {
    grid-column: 1/4;
    margin-top: 100px;
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    background: none;
    justify-content: center;
    letter-spacing: 2px;
    align-items: center;
    text-align: center;
    /* border-radius: 50px;
    border: 10px solid magenta; */
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(1000%);
        opacity: 0;
    }

    20% {
        transform: translateY(200%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.tricky {
    margin: 0px;
    margin-bottom: 20px;
    grid-column: 2;
    color: white;
    font-size: 28px;
    font-weight: 100;
}

input.blank {
    grid-column: 2;
    color: purple;
    outline: none;
    border-radius: 10px;
    border: 2px solid magenta;
    font-size: 2rem;
    text-align: center;
    padding-bottom: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

input.guess:hover,
input.hint:hover {
    cursor: pointer;
}

input.guess {
    grid-column: 2;
    margin-bottom: 20px;
    margin-top: 20px;
    color: white;
    background: yellowgreen;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border-radius: 10px;
    /* outline: none; */
    border: 4px solid rgb(76, 102, 24);
    font-size: 2rem;
    text-align: center;
    box-shadow: 0px 6px 8px 0px black;
    transform: scale(1);
    transition: all .5s ease;
}

input.guess:active {
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 0px black;
}

.notifications {

    width: 90%;
    justify-self: center;
    border-radius: 10px;
    border: 1px solid white;
    padding: 5px;
    font-size: 1.3rem;
    color: black;
    display: none;
}

.noti-one {
    background: rgb(248, 236, 6);
    grid-column: 1;
    grid-row: 1;
    box-shadow: 0px 3px 3px 0px black;
    animation: fadeInLeft 0.5s ease;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-1000%);
        opacity: 0;
    }

    60% {
        transform: translateX(-200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}


.noti-two {
    background: rgb(248, 236, 6);
    grid-column: 1;
    grid-row: 2;
    box-shadow: 0px 3px 3px 0px black;
    animation: fadeInLeft 0.5s ease;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-1000%);
        opacity: 0;
    }

    60% {
        transform: translateX(-200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.noti-three {
    background: rgb(248, 236, 6);
    grid-column: 1;
    grid-row: 3;
    box-shadow: 0px 3px 3px 0px black;
    animation: fadeInLeft 0.5s ease;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-1000%);
        opacity: 0;
    }

    60% {
        transform: translateX(-200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.hint {
    position: absolute;
    margin-top: 380px;
    left: 40%;
    grid-column: 3;
    grid-row: 3;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    outline: none;
    color: black;
    background: rgb(2, 169, 224);
    border: 4px solid rgb(2, 91, 121);
    font-family: 'Odibee Sans', cursive;
    font-size: 2.4rem;
    letter-spacing: 1px;
    justify-self: center;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0px 3px 3px 0px black;
    animation: fadeInRight 2s ease;
}

@keyframes fadeInRight {
    0% {
        transform: translateX(1000%);
        opacity: 0;
    }

    60% {
        transform: translateX(200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.hint:active {
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 0px black;
    transition: all 0.2s ease;
}

.hint-img {
    position: absolute;
    margin-top: 150px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    grid-column: 1;
    grid-row: 1/5;
    margin: 20px;
    display: none;
    animation: fadeInLeft 0.5s ease;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(-1000%);
        opacity: 0;
    }

    60% {
        transform: translateX(-200%);
        opacity: 0;
    }

    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.geek-text {
    justify-content: center;
    text-align: center;
    color: yellow;
}