* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

:root {
    --head-title: "Pacifico", cursive;
    --site-head: "Righteous", sans-serif;
}

.mainSec {
    background-color: #F7ECDE;
    padding-block: 1.5625rem;
    min-height: 100vh;
    /* height: 100vh; */
}

#titleSec {
    border-bottom: 2px black dotted;
}

.title {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-family: var(--head-title);
}

.title::before {
    content: "";
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30%;
    z-index: -1;
    background-color: #8CA94F;
    transition: all .3s ease;
}

.title:hover::before {
    height: 70%;

}

#bookName,
#siteUrl {
    font-size: 14px;
    font-weight: 600;
}

#siteSec {
    border-bottom: 2px black dotted;
}

#submitBtn {
    font-family: var(--site-head);
}

.siteHead {
    font-family: var(--site-head);
    font-size: 25px;
    font-weight: 31.25rem;
    background-image: linear-gradient(to right, #3ca55c, #b5ac49);
    background-clip: text;
    -webkit-text-fill-color: transparent
}

#alertMsg {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, .5);
    justify-content: center;
    align-items: center;
}

.box {

    min-width: 300px;
    max-width: 500px;
}

.redSpan,
.greenSpan,
.blueSpan {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.descriptionRules p {
    font-size: 18px;
    font-family: var(--site-head);
}

.urlRules p,
.nameRules p {
    font-size: 15px;
    font-weight: 300;
    font-family: var(--site-head);
}

i {
    cursor: pointer
}