#header-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background-color: rgb(82, 77, 77); 
}

body {
    margin: 0 auto;
    padding: 0;
    background-color: #0f0e0e;
}

#logo {
    width: 70%;
}

#buttons {
    text-align: center;
    display: flex;
    align-items: center;
}

a {
    text-decoration: none;
}

.buttons {
    font-size: large;
    font-family: "Poppins", sans-serif;
    letter-spacing: 1.3px;
    text-decoration: none;
    color: aliceblue;
    transition: 0.5s;
    margin-left: 15%;
}


.buttons:hover {
    color: rgb(184, 72, 72);
    transition: 0,5s;
}

button:active {
    background-color: #bd6262;
    transform: translateY(4px);
}

@media (max-width: 700px) {
    button {
        height: 10%;
        width: 20%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 10%;
        margin-left: 34%;
    }
}

#container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    margin: 5% auto;
    padding: 20px;
}

.item {
    background-color: #f7f7f7;
    border: 2px solid #8a0000;
    border-radius: 8px;
    padding: 20px;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  
}

.item img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    align-items: center;
    
}

.item p {
    margin: 0;
    font-size: 18px;
    color: #830505;
    font-family: "Poppins", sans-serif;
    background-color: #f0a3a3;
    border-radius: 10px;
    padding: 5px;
}