/* Fona un pamata stils */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #1a1a1a;
    color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;

    background-image: url("../img/pirts-main-img.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    max-inline-size: 100%;
}

body::before{
    content:"";
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:-1;
}

/*Logo box aliamgment*/
.main-tittle {
    color: white;
    text-align: center;
    padding: 0;
    font-size: 5rem;
    font-weight: 400;
    margin: 0;

    animation-name: moveInLeft;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}

.logo-box {
    margin: 0;
    display: flex;
    justify-content: center;
}

.logo {
    width: 13rem;

    animation-name: moveInRight;
    animation-duration: 1s;
    animation-timing-function: ease-out;
}
header {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin:3rem auto;
    vertical-align: top;

}

/* Konteiners kartītei */
.card {
    background-color: #2c2c2c;
    border-radius: 15px;
    padding: 40px;
    max-width: 700px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

h1 {
    text-align: center;
    font-size: 2.2em;
    margin-bottom: 20px;
    color: #ffdd82;
}

p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.highlight {
    font-weight: bold;
    color: #a0e7a0;
}

ul {
    list-style: none;
    padding-left: 0;
}

li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.emoji {
    margin-right: 6px;
}

/* Responsīvais dizains */
@media (max-width: 768px) {
    .card {
        padding: 30px 20px;
    }

    h1 {
        font-size: 1.8em;
    }
}