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

body {
    padding: 0;    
    margin: 0;
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    font-family: arial; 
    overflow: hidden;
}
.button{
    display: block;
    margin: -5px auto;
    padding: 6px 18px;
    border: 2px solid black;
    background: aquamarine;
    font-family: 'Baloo Tamma 2', cursive;
    border-radius: 12px;
    cursor: pointer;
    font-size: 17px;
    position: absolute;
    margin-left: 48rem;
    margin-top: -15rem;
}

body::before{
    content: "";
    height: 110%;
    width: 100%;
    top: 0px;
    position: absolute;
    background: url("pic.jpg") no-repeat center center/cover;
    z-index: -1;
}

.word-container{
    width: 70vw; 
    max-width: 600px; 
    margin: 20px auto; 
    background-color: black; 
    border-radius: 30px; 
    box-shadow: 1px 4px pink; 
}
h1, p {
    text-align: center;  
    text-transform: uppercase; 
    color: white; 
    padding: 5px; 
    /* margin: 2px 5px;  */
    margin: 60px 5px;
}
.title{
    color: blueviolet;
    text-transform: none; 
    font-size: 63px; 
    padding-top: 30px; 
    padding-bottom: 100px; 
    text-shadow: 1px 4px pink; 
    font-family: 'Baloo Tamma 2', cursive;
    animation: color-change 2s linear infinite;
}
.CTA{
    padding-bottom: 10px; 
    font-weight: bolder;
    color: black; 
    font-size: 30px;
    color: cornsilk;
    margin-top: -164px;
}
.display-none{
    display: none; 
}
.error{
    color: red; 
    font-weight: bolder; 
    text-decoration: line-through; 
}

@keyframes color-change {
    
    0%,100%{
        filter: hue-rotate(0deg);
        
    }
    
    50%{
        filter: hue-rotate(360deg);

    }
}

