.pheonix-cpus {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-start;
    position: relative;
    
    height: 80vh;
    background-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,1) 100%), url("../assets/silicon.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    color: white;
    padding: 80px 20px;
}

.pheonix-cpus h1 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: white;
}

.pheonix-cpus-grid {
    display: grid;
    gap: 80px;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    max-width: 1200px;
    color: white;
}

.pheonix-cpus-grid-item {
    border: 2px solid #272727;
    border-radius: 25px;
    padding: 30px;
    transition: all 0.3s ease;
    color: #dddddd;
    backdrop-filter: blur(8px);
    text-decoration: none;

    width: 300px;
}

.pheonix-cpus-grid-item:hover {
    transform: scale(1.1);
    background-color: rgba(0,0,0,0.3);
}

