@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;1,300&display=swap');

body {
    background-color: #0d1e3d;
    color: #ffffff;
    font-family: "DM Mono", monospace;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    text-align: center;
    margin: 20px 0;
    animation: fadeIn 1s ease-in-out;
}

h1, h2 {
    color: #e0e1dd;
}

h3 {
    text-transform: uppercase;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.specs {
    background: linear-gradient(145deg, #1e2a38, #0d1b2a);
    border: 1px solid #1f2a3b;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 15px;
    padding: 15px;
    width: 80%;
    max-width: 800px;
    display: flex;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    opacity: 0;
    animation: slideIn 1s forwards;
}

.specs img {
    width: 100px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    transition: transform 0.3s;
}

.spec-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.spec-text h3 {
    margin: 5px 0;
    color: #e0e1dd;
    font-size: 1.5em;
    display: flex;
    align-items: center;
}

.spec-text p {
    margin: 5px 0;
    color: #cbd4da;
    font-size: 1.2em;
}

.spec-text h3 i {
    margin-right: 10px;
}

.specs:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.specs:hover img {
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}