*{
    margin: 0;
    padding: 0;
    
    
}
#Title {
    color: black;
    text-decoration: underline;
    font-family: "Nanum Pen Script", cursive;
    font-weight: 800;
    font-style: normal;
    font-size: 60px;

    
}

a {
    text-decoration: none;
    color: #2E382E;
    font-weight: 800;
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-style: normal;
 
}

#active{
    background-color: /*#FCD3DE;*//*#D3FFF3;*/ #f2bac9;
    padding: 5px 5px 0px 5px;
    border-radius: 5px;
    border-style:dashed;
}

#inactive:hover{
    background-color: /*#FCD3DE;*//*#D3FFF3;*/ #ADBDFF;
    padding: 5px 5px 0px 5px;
    border-radius: 5px;
    /* border-style:dashed; */
}

#separator{
    font-weight: 800;
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 25px;
}

.navbar{
    position: fixed;
    width: 100vw;

    background-color: #9883E5;/*#AFBBF2;*/
    border-radius: 5px;
    border-style: ridge;
    border-color: black;

    font-weight: 800;
    font-family: "Playwrite BE VLG", cursive;
    font-optical-sizing: auto;
    font-style: normal;
    z-index: 1;
}

.content{
    /* background: radial-gradient(rgb(255, 183, 183),rgb(192, 86, 234)); */
    background: linear-gradient(90deg,rgb(255, 183, 183),rgb(192, 86, 234));
    /* margin-bottom: 200px; */
}

.container1{
    display: flex;
    /* border: 2px solid black; */
    height: 204px;
    width: 100%;
    align-items: center;
    align-content: space-between;
    gap: 10px;
}
#cat{
    display: flex;
    height: 200px;
    align-self: flex-start;
    border: 2px solid black;
}
#catText{
    display: flex;
    align-self:normal;
    /* flex-direction: column; */
    /* flex-grow: 1; */
    font-family: "Nanum Pen Script", cursive;
    font-weight: 800;
    font-style: normal;
    font-size: 23px;

}

.container2{
    display: flex;
    height: 200px;
    width: 100%;
    /* border: 2px solid black; */
    /* align-items: center; */
    align-content: space-between;
}

#text{
    display: flex;
    font-family: "Nanum Pen Script", cursive;
    font-weight: 800;
    font-style: normal;
    font-size: 25px;
}

#bouncing{
    display: flex;
    /* border: 2px solid black; */
    height: 196px;
    width: 370px;
    align-self: flex-end;
}

#loader{
    height:190px;
    width: 200px;
    font-weight: bold;
    border-radius: 50%;
    border-top: 10px solid rgb(203, 25, 185);
    animation: spinAnimate 2s ease-in-out 0s infinite normal;
    
    
}



@keyframes spinAnimate{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

footer{
    display: flex;
    height: 206px;
    width: 100%;
    background: #3a165b;
    position: static;
    bottom: 0;
}

#img{
    align-self: flex-start;
}


#mypic{
    height: 200px;
    border: 2px solid black;
    
}
#footText{
    align-self: center;
    padding: 30px;
    color: #ffd0a9;
    font-weight: bold;
    font-size: 15px;
    padding-bottom: 0;
}

#smallerFootText{
    text-align: center;
    font-size: 10px;
    padding-bottom: 0;
}

#footerLink{
    text-decoration: none;
    color: #ffd0a9;
}
