/* Write styles here */

  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

*{
    box-sizing: border-box;
    margin: 0%;
    font-family: 'Inter', sans-serif;
}
header{
    width: 100%;
    background-color: black;
    color: white;
    padding-left: 2%;
    padding-right: 2%;
    padding-top: 1%;
    padding-bottom: 1%;
    position: sticky;
    top: 0;
    z-index: 1;
}
#navBar{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.items{
    display: flex;
    gap: 30px;
    padding-left: 1%;
    padding-right: 1%;
}

a{
    color: white;
    text-decoration: none;
}
.item:hover{
    cursor: pointer;
}
main{
    position: relative;
    display: flex;
    margin-top: 2px;
    margin-left: 2%;
}


#colorcode{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
#colorbtns{
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-left: 5px;
    gap: 10px;
}
#rec1{
    width: 15px;
    height: 15px;
    background-color: black; 
    border-radius: 50%;
}
#rec2{
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 50%;
    
}
#rec3{
    width: 15px;
    height: 15px;
    background-color: blue;
    border-radius: 50%;
    
}


#title{
    height: 97px;
    width: 386px;
    left: 62px;
    top: 138px;
    font-size: 60px;
    font-weight: 400;
    line-height: 97px;
    letter-spacing: 0em;
    text-align: left;
}
 
#subtitle{
    font-weight: 400;   

}
#landingpageimg{
    width: 800px;
    height: 691px;   
    margin-top: 10%;
    margin-left: 10%;
}

#mainrating{
    display: flex;
    align-items: center;
    justify-content:space-between;
}


#card{
    margin-top: 5%;
    width: 304px;
    border: 2px solid black;
}
#imagedetails{
    display: flex;
    justify-content: space-between;
    padding: 2%;
}
#newloginbtn{
    width: 30%;
    padding: 3%;
    border: 2px solid black;
    background-color: white;
    margin: 2%;

}

#newsignupbtn{
    width: 30%;
    padding: 3%;
    color: black;
    border: 2px solid black;
    background-color: white;
    margin: 2%;
}
#addbtn{
    width: 100%;
    padding: 3%;
    background-color: black;
    color: white;
}

#newloginbtn:hover{
    background-color: black;
    color: white;
}

#newsignupbtn:hover{
    background-color: black;
    color: white;
}