body{
    padding: 0px;
    margin: 0px;
    background-color:wheat;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #d1e0e0;
    height: 100%vh;
    
}
.logoweb{
    width: 50px;
    height: auto;
    border-radius: 100%;
     display: block;    
      margin-left: 0;  
}

.header{
    position: sticky;
    background-color:#679898;
      top: 0;
    height: 80px;    
    display: flex;
    align-items: center;
    padding: 10px;
     z-index: 1000;   
}

nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%); 
   
    padding: 16px;
    border-radius: 10px;
  
    
}
nav a {
    margin: 0 15px;   
    text-decoration: none;
    color:#ebebe0;
    padding: 10px;
    font-size: 1rem;
    font-weight:bold;
}
nav a:hover{
    background-color: #10100a;
  
}

.username{
    position: absolute;
    top: 50%;
     right: 20px;  
      transform: translateY(-50%);
      font-size: 15px;
      color:#0099ff;
      text-decoration: none;
      background-color: black;
      padding: 12px 20px;
      border-radius: 10px;
}

.hero{
   
    display: flex;
   justify-content:space-between;
   align-items: center;
    padding: 40px;
    max-width: 1000px;
    margin: auto;        
   
}
.hero-text{
    max-width: 500px;
   
}
.hero h1 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.2;      
    margin-bottom: 20px;
    color: #0099ff; 
    margin-top: 10px;
}

.hero h1 span {
    color: #0099ff;
}
.hero img{
     width: 400px;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    border: 2px solid lightblue;
}

.button{
    display: inline-block;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    background-color: #0099ff;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
   
}
.button:hover {
    background-color: #007acc;
 
}
