@font-face
{
    font-family: bubbleBobble;
    src: url(bubble_bobble_FINAL.ttf);

    /*Site font used: https://www.1001fonts.com/bubble-bobble-font.html*/
    /*For reference if I want to use a different font: https://www.1001fonts.com/whimsical-fonts.html?page=22*/
}

*
{
    box-sizing: border-box;
}

body
{
    background-color: rgb(56, 56, 56);

    margin: 0;
    padding: 0;
}

#site_Name
{
    font-family: bubbleBobble;
    text-align: left;
    font-size: 200%;

    padding-left: 2%;
    padding-right: 2%;
}

#head_Nav
{
    background-color: #64e07b;

    min-width: fit-content;
    width: 100%;
    height: fit-content;

    position: fixed;
    top: 0;
}

#login_SignUp
{
    text-align: right;
    padding-right: 2%;
    font-size: medium;
}

#log_Out_Text
{
    cursor: pointer;
    text-decoration: underline;
}

#foot_Nav
{
    background-color: #64e07b;
    font-size: medium;

    min-width: fit-content;
    width: 100%;
    height: fit-content;

    position: fixed;
    bottom: 0;
    left: 0;
}

#foot_Links
{
    font-size: medium;
}

#site_Copyright
{
    background-color: #3fbd78;
    font-size: small;
    text-align: center;
}

#foot_Content
{
    margin: 1% 1% 0 1%;
    /*0 is bottom margin*/
}
/**********************************************************/
/********************Landing Page**************************/
#page_Content
{
    margin-top: 110px;
    width: 100%;
}

#inner_Page_Content
{
    margin: 1%;

    display: flex;
    flex-direction: row;

    min-height: fit-content;
}

#latest_Creations
{
    background-color: #64e07b;
    text-align: center;
    left: 0;

    min-width: fit-content;
    width: 20%;

    margin-right: 5%;
}

#landing_Info
{
    background-color: #24a08f;
    text-align: center;
    
    right: 0;
    width: 75%;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;

    font-size: large;
}

.site_Mascot
{
    max-width: 30%;
    height: auto;

    float: right;
    margin-bottom: 1%;
}

.background_Latest_Color
{
    background-color: #24a08f;
    border-radius: 5px;
    padding: 5px;
}
/**********************************************************/
/*******************Registration Page**********************/
#reg_Page_Content
{
    margin-top: 170px;
    width: 100%;
}

.toolTip .tooltip_Text
{
    visibility: hidden;
    width: 120px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    margin-left: 5%;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.toolTip:hover .tooltip_Text
{
    visibility: visible;
}

#reg_Box
{
    margin: auto;
    min-width: fit-content;
    width: 75%;
    height: auto;

    background-color: #24a08f;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;
}

.toolTip
{
    position: relative;
    display: inline-block;
}

.toolTip .tooltip_Text
{
    visibility: hidden;
    width: 120px;
    background-color: #6aaca3;
    color: black;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}

.toolTip:hover .tooltip_Text
{
    visibility: visible;
}

.submitButton
{
    background-color: #64e07b;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 35px;
    margin-bottom: 35px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 5px;
    padding-left: 115px;
    padding-right: 115px;
}

.nice_h2
{
    text-align: center;
    font-family: bubbleBobble;
}

.reg_Input_Style
{
    border: solid 3px;
    padding: 5px;
    border-color: #64e07b;
    padding-right: 70px;
}

#id_Form
{
    margin-top: 50px;
    text-align: center;
}
/**********************************************************/
/***********************Login Page*************************/
#login_Page_Content
{
    margin-top: 170px;
    width: 100%;
}

#login_Box
{
    margin: auto;
    min-width: fit-content;
    width: 75%;
    height: auto;

    background-color: #24a08f;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;
}

#login_Form
{
    text-align: center;
}

.submit_Button_Login
{
    background-color: #64e07b;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 35px;
    margin-bottom: 35px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 5px;
    padding-left: 135px;
    padding-right: 135px;
}
/**********************************************************/
/*********************Creator Page*************************/
#creator_Area
{
    background-color: #24a08f;
    text-align: center;
    
    right: 0;
    width: 75%;
    height: fit-content;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;

    font-size: large;
}

#change_Body_Button
{
    background-color: #64e07b;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 5px;
}

.arrows
{
    cursor: pointer;
}

#change_Body_Button
{
    background-color: #64e07b;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-bottom: 35px;
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 5px;
}
/**********************************************************/
/***********************About Page*************************/
#about_Page_Content
{
    margin-top: 100px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#about_Page_Box
{
    background-color: #24a08f;
    text-align: center;
    
    right: 0;
    width: 95%;
    height: fit-content;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;

    font-size: large;
}
/**********************************************************/
/***********************FAQ Page***************************/
#faq_Page_Content
{
    margin-top: 100px;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

#faq_Page_Box
{
    background-color: #24a08f;
    text-align: center;
    
    right: 0;
    width: 95%;
    height: fit-content;

    border-color: #64e07b;
    border-style: solid;
    border-width: 15px;

    font-size: large;
}