* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #353535;
    --accent-color: #f39c12;
    --button-hover-color: #353535;
    --button-hover-bg: #000;
}

body {

    @media (min-width: 768px) {
        background: url('bg.jpg') no-repeat center / cover fixed #F2D680;
        height: 100vh;
        margin: 0;
    }
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    position: relative;
    border: none;

    @media (min-width: 768px) {
        max-width: 640px;
        margin: 30px 0;
        padding: 40px;
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(35, 10, 10, 0.3);
    }
}

.card img {
    width: 160px;
    height: 160px;
    border-radius: 8px;
    margin: 0 auto;
    /*box-shadow: 0 0 0 2px #e5e4e2;*/
}

.card h4 {
    color: var(--theme-color);
    font-family: "Aleo", serif;
    font-size: 20px;
    margin: 15px 0 5px 0;
}

.card h5 {
    color: #454545;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
}

.description {
    color: #7a7a7a;
    font-size: 14px;
    font-weight: 400;
    padding: 0 20px;
}

.details {
    margin: 10px;
    min-width: 280px;
}

.details a {
    display: flex;
    align-items: center;
    justify-content: start;
    text-align: left;
    text-decoration: none;
    background: #f1f0f0;
    margin-bottom: 10px;
    padding-bottom: 7px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 0px 3px 0px #d1cec6;
}

.details a:hover {
    background-color: #000;
    color: #fff;
}

.details a i {
    display: block;
    padding: 0px 20px;
}

.details span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px 3px 0;
}

.buttons {
    margin-top: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons a {
    margin: 0 5px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: transparent;
    color: var(--theme-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buttons a:hover {
    background-color: var(--button-hover-bg);
    color: white;
}

.export-btn {
    margin: 15px 10px;
    padding: 10px 20px;
    border: none;
    border-radius: 10px;
    background-color: #b56513;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.export-btn:hover {
    background-color: #000;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    text-align: left;
}

.modal-content label {
    display: block;
    margin-top: 10px;
}

.modal-content input {
    width: 100%;
    padding: 5px;
    margin-top: 5px;
}

.modal-content button {
    margin-top: 20px;
    padding: 10px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: var(--theme-color);
}
