* {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

body {
    margin:0;
    font-family:Arial;
    background:#111112;
    color:whitesmoke; 
}

header {
    background:#1f2225;
    padding:20px;
    text-align:center;
    font-size:25px;
    color:#f1eeee;
}

header {
    background-image: url("https://i.pinimg.com/736x/e0/bc/95/e0bc9519d748de965585f95c3f96f7c5.jpg");
    background-size: cover;
    background-position: center ;
    height: 200px;
    padding: 90px;
    border-radius: 10px;
}

.search-box {
    position: absolute;
    top: 20px;
    right: 20px;
}

.search-box input {
    padding: 8px 12px;
    border-radius: 20px;
    border: none;
    outline: none;
    background: #2c2e32;
    color: whitesmoke;
    transition: 0.3s;
}

.search-box input:focus {
    background: #2c2e32;
    box-shadow: 0 0 10px white;
}




.catalogo {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    padding:30px;
    gap:20px;
}

.card {
    width:200px;
    background:#2c2e32;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
    cursor:pointer;
}

.card img {
    width:100%;
    height:250px;
    object-fit:cover;
}

.card:hover {
    transform:scale(1.1);
    box-shadow:0 0 20px #e4dfdf;
}

.card h3 {
    text-align:center;
    padding:10px;
}

.modal {
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.8);
    justify-content:center;
    align-items:center;
}

.modal-content {
    background:#151920;
    padding:30px;
    border-radius:10px;
    max-width:400px;
    text-align:center;
}

.fechar {
    cursor:pointer;
    float:right;
    font-size:20px;
}


#modal {
    pointer-events: auto;
}

