@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Lexend+Deca:wght@100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* 
font-family: "Cormorant Garamond", serif;
font-family: "Lexend Deca", sans-serif;
font-family: "Montserrat", sans-serif;
font-family: "Poppins", sans-serif;
font-family: "Roboto", sans-serif;
*/

 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif;
}
.common {
    display: flex;
    justify-content: center;
}
.common-even {
    display: flex;
    justify-content: space-evenly;
}
.common-bet {
    display: flex;
    justify-content: space-between;
}
.common-around {
    display: flex;
    justify-content: space-around;
}
.align {
    align-items: center;
}
.flex-col {
    flex-direction: column;
}
.flex-row {
    flex-direction: row;
}
.col-10 {
    width: 10%;
}
.col-15 {
    width: 15%;
}
.col-20 {
    width: 20%;
}
.col-25 {
    width: 25%;
}
.col-30 {
    width: 30%;
}
.col-35 {
    width: 35%;
}
.col-40 {
    width: 40%;
}
.col-45 {
    width: 45%;
}
.col-50 {
    width: 50%;
}
.col-55 {
    width: 55%;
}
.col-60 {
    width: 60%;
}
.col-65 {
    width: 65%;
}
.col-70 {
    width: 70%;
}
.col-75 {
    width: 75%;
}
.col-80 {
    width: 80%;
}
.col-85 {
    width: 85%;
}
.col-90 {
    width: 90%;
}
.col-95 {
    width: 95%;
}
.col-100 {
    width: 100%;
}

/* --------- Main Page --------- */

.lf-container {
    height: 100vh;
    background-image: linear-gradient(to right, #4a90e2, #8f11a8);
}
.lf-main {
    height: 70%;
}
.lf-main h1,
.lf-main p,
.lf-main a,
#tempLogo {
    color: #ffffff;
    text-align: center;
}
.lf-main h1 {
    font-size: 64px;
    font-weight: 600;
}
.lf-main a {
    padding: 12px 40px;
    border-radius: 30px;
    text-decoration: none;
    border: 1px solid #fff;
}
.lf-main a:hover {
    background: #fff;
    transition: .3s;
    color: #000;
}
#tempLogo {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: .5px;
    text-decoration: none;
}

/* ---------- Sign In --------- */
.signin-form form {
    width: 400px;
    padding: 15px;
    border-radius: 10px;
    background: #fff ;
}
.signin-form form h3 {
    font-weight: 600;
    margin-bottom: 20px;
}
.signin-form form input {
    border: 0;
    font-size: 16px;
    padding: 8px;
    outline: 0;
    border-radius: 5px;
    margin-bottom: 15px;
    background: #e6e6e6 ;
}
.signin-form form label {
    margin-bottom: 2px;
}
.signin-form form input[type="submit"] {
    background: #4a90e2;
    color: #000;
    cursor: pointer;
}
.signin-form form input[type="submit"]:hover {
    transition: .3s;
    color: #fff;
    background: #004ea6;
}
.signin-form form span {
    text-align: center;
}

/* ------------ Home Page ------------- */
.homepage {
    height: 700px;
    /* border: 2px solid red; */
}
.navigation {
    position: fixed;
    top: 0;
    height: 80px;
    z-index: 3;
    background: #fff;
    box-shadow: 0px 2px 10px 2px #c7c7c7;
    /* border: 2px solid black; */
}
#active {
    border-bottom: 2px solid #000;
}
.nav-logo a {
    color: #000;
    font-size: 20px;
    text-decoration: none;
}
.nav-links a {
    color: #000;
    text-decoration: none;
}
.nav-links a:hover {
    /* transition: .3s; */
    border-bottom: 2px solid #000;
}
#logout {
    color: #fff;
    padding: 5px 20px;
    border-radius: 10px;
    background: #ff0000;
}
.product {
    margin-top: 6pc;
}
.product {
    height: auto;
    padding: 2pc 0;
    /* border: 2px solid black; */
}
.product form input {
    padding: 7px;
    border-radius: 5px;
    border: 0;
    outline: 0;
    font-size: 18px;
    background: #e6e6e6;
}
.product form input[type="search"] {
    width: 100%;
}
.product form input[type="submit"] {
    /* width: 130px; */
    margin-top: 10px;
    padding: 5px 20px;
    color: #fff;
    cursor: pointer;
    background: #004ea6;
}
.suggestions {
    display: none;
    border: 1px solid #ccc;
    background: #fff;
    position: absolute;
    width: calc(100% - 22px);
    max-height: 150px;
    overflow-y: auto;
    margin-top: 9pc;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.suggestions div {
    padding: 10px;
    cursor: pointer;
}
.suggestions div:hover {
    background: #f0f0f0;
}
.display-tos-main {
    height: auto;
    margin: 2pc 0;
    padding: 1pc;
    border-radius: 5px;
    background: #a2cdff;
    box-shadow: 2px 2px 10px 1px #c7c7c7;
    /* border: 2px solid red; */
}
.display-box {
    margin: 1pc 0;
}
.display-box li {
    margin: 5px 0;
}
.hun-word-summary {
    background: #a2cdff;
}
/* ----------- Profile ----------------- */
.profile-main {
    /* border: 2px solid red;  */
    height: 700px;
    margin-top: 6pc;
}
.profile-card {
    width: 600px;
    height: 500px;
    background: #a2cdff;
    border-radius: 10px;
    box-shadow: 2px 2px 10px 1px #acd3ff;
}
.profile-card img {
    width: 200px;
}
.profile-card span {
    margin: 10px 0;
}