    header, footer {
       background-color: #333;
       color: white;
       text-align: center;
       padding: 10px;
   }
   main {
       background-color: #f4f4f4;
       padding: 20px;
   }
   .container {
       display: flex;
       flex-direction: column;
       align-items: center;
   }

   a {
    color: #ff1100;
    text-decoration: none;
}
a:hover {
    color: #b39800;
    text-decoration: underline;
}

.box1 {
    background-color: #ff0000fa;
    padding: 20px;
    margin: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}
.box2 {
    background-color: #ff7300;
    padding: 20px;
    margin: 10px;
    
}

#special {
    background-color: #cce5ff;
    font-weight: bold;
    text-align: center;
}

.shadow-box {
    width: 200px;
    height: 200px;
    background-color: #ddd;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.shadow-box:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-10px);
}


p:hover {
    color: #ff0000;
}
p::before {
    content: "Loe seda: ";
    color: #007BFF;
}

