* {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: rgb(152, 163, 163);
}

.active {
    color: cyan;
}

/* nav {
    background-color: black;
    color: azure;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    padding: 30px 200px;
}

nav > .logo {
    font-size: 1.8rem;
}


nav > .nav-links > ul {
    list-style-type: none;
    display: flex;
    gap: 30px;
    font-family: sans-serif;
}

nav > .nav-links > ul > li > a {
    text-decoration: none;
    color: inherit;
}




.bgimage {
    background: url('./images/hero.jpg');
    background-position: relative;
    background-size: 100%;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100%;
}

.bgimage::after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 10;
    left: 0;
    background-color: rgba(0,0,0, 0.6);
}


header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    align-items: center;
    color: azure;
}
 */

/* login & signup aspect */

.login-box {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin:120px auto;
    position: relative;
    cursor: pointer;
}

.login-box > .cancel {
    position: absolute;
    z-index: 1;
    top: -4rem;
    right: 3rem;
    font-size: 1rem;
}

.login-box > p {
    padding: 15px 0 25px;
    font-family: sans-serif;    
}

.signUp-box {
    padding:10px 15px;
    margin: 10px;
    border: 1px solid black;
    text-align: center;
    display: flex;
}
.signUp-box > img {
    width: 29px;
}

.signUp-box > p {
    font-size:19px;
    width: 300px;
    font-family: sans-serif;
}

.facebook {
    color: aliceblue;
    background-color: #0c4db6;
    border: none;
}

.facebook-logo > img {
    width: 29px;
    background-color: aliceblue;
    border-radius: 50%;
    padding: 2px;
}

.facebook > p {
    padding-top: 4px;
}

.google {
    border: 1px solid grey;
}

.email {
    padding:15px 29px;   
}

/* .line {
    padding-block: 5px;
    border: 3px sol1d black;
    width: 120px;
    display: inline-block;
} */


.line-box {
    display: flex;
}
.line {
    border: 1px solid darkslategray;
    border-radius: 2px;
    width: 145px;
    margin: 20px 15px;
    display: inline-block;
}

.or {
    padding-top: 9px;
    font-family: sans-serif;
    font-size: large;
}

/* ------------------- */

/* header > button {
    margin: 30px 5px;
    padding: 7px 20px;
    color: black;
    background-color: aqua;
    border: none;
    transition: 0.5s ease-in-out;
}

header > button:hover {
    background-color: rgb(9, 206, 206);
    transition: 0.5s ease-in-out;
    color: aliceblue;
} */