* {
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Inter';
}
body{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    background-color: rgb(241, 240, 240);
}

header{
    margin: 0;
    width: 100%;
}
.header-top{
    margin: 0;
    background-color: #28A7B9E5;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;

}
.header-top ul{
   display: flex;
   flex-direction: column;
   list-style: none;
   font-size: 1.5rem;
   font-weight: 600;
}

.search-bar {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 300px;
}

.search-bar input {
    width: 24em;
    padding: 12px 40px 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    
}

.search-bar i {
    position: absolute;
    right: 12px;
    color: #151515;
    cursor: pointer;
    pointer-events: none;
}
.cart{
    display: flex;
    align-items: center;
    cursor: pointer;
    gap: 10px;
}
.cart img{
    width: 50px;
    height: 50px;
    background-color: #f0f0f0;
}
.cart img:hover{
    width: 40px;
    height: 40px;
    transition: 2s all ease-in-out;
}
.cart p{
    font-size: 1.2rem;
    font-weight: 500;
}
.cart p:hover{
    
    transition: 2s all ease-in-out;
}
.login{
    display: flex;
    align-items: center;
}
.fa-user-plus {
    font-size: 2em;
}

.fa-user-plus {
    padding: 2%;
    font-size: 3rem;
    margin-left: 10%;
}
.fa-solid, .fas {
    font-weight: 900;
}
.navbar{
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 10px;
    margin: 0;
    height: calc(100% - 90%);
    align-items: center;
}
.navbar ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    gap: calc(100% - 95%);
    align-items: center;
    justify-content: center;
}
.navbar ul li{
    float: left;
    text-decoration: none;

}
.navbar ul li a{
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: 600;
}
.navbar ul li a:hover{
    color: white;
    text-decoration: none;
}
/* Main Body Styling */
main {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.homeImage{
    width: 100%;
    height: 100vh;
}
.description {
    width: 100%;
    height: 100px;
    display: flex;              
    align-items: center;        
    justify-content: center;   
    background: #f0f0f0;         
}

.description p {
    width: 50%;          
    margin: 0;                   
    text-align: center;   
    font-size: 1.4rem       
}
.cosmology {
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;       
    justify-content: center;   
    gap: 40px;                 
    background: #f0f0f0;
    padding: 20px;              
    box-sizing: border-box;
}

/* Image styling */

.cosmologyImg img {
    margin-top: 25px;
    width: 250px;
    height: 250px;
    object-fit: cover;          
    border-radius: 0px;         
    flex-shrink: 0;            
}

/* Text styling */
.cosmologyDescription h2{
    text-align: center;  
    font-weight: 700;
    font-size: 1.5rem;
}
.cosmologyDescription p {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.6;
    max-width: 600px; 
    width: 400px;  
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;  
}
.ovalElements {
    display: grid;
    grid-template-columns: 1fr 1fr;        
    justify-items: center;                 
    align-items: center;                   
    gap: 30px 40px;                        
    padding: 30px 20px;
    max-width: 700px;                     
    margin: 0 auto;                        
    width: 100%;
}

.oval {
    width: 25vw;
    max-width: 200px;         
    height: 2.5vw;
    max-height: 100px;
    border-radius: 50%;
    background: #2563eb;
    border: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.oval:hover {
    transform: scale(1.08);
    background: #1d4ed8;
}


/* Footer  */
footer{
    background-color: #28A7B9E5;
}

.socialMedia{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
}
.socialMediaImages{
    display: flex;
    width: 50%;
    gap: 20px;
    margin-bottom: 15px;
}
.socialMediaImages img{
    width: 30px;
    height: 30px;
    background-color: #f0f0f0;
}
.followUs{
    display: flex;
    flex-direction: column;
}
.followUs p, .paywithUs p{
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 2rem;
    color: #000000;
    list-style-type: none;
    white-space: nowrap;
}
.community{
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}
.community p{
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    font-size: 1.5rem;
    list-style-type: none;
    padding: 0%;
    color: #ffffff;
}
.community ul{
    text-decoration: none;
    list-style: none;
}

@media screen and (max-width: 600px){
    
    
}