@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');

body {
    background-color: #000;
    color: #fff;
    font-family:   sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
}

header {
    padding: 40px;
}

.neon-text {
    font-size: 40px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgb(30, 118, 118), 0 0 20px rgb(202, 41, 178), 0 0 30px rgb(156, 86, 54);
}

.subtitle {
    font-size: 18px;
    color: rgb(60, 251, 111);
}

.projects {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
}

.card {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid #0ff;
    border-radius: 10px;
    padding: 20px;
    margin: 25px;
    width: 250px;
    box-shadow: 0 0 10px #0ff;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #0ff;
}

button {
    background: transparent;
    color: rgb(189, 39, 171);
    border: 2px solid #0ff;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 20px;
}

button:hover {
    background: #0ff;
    color: #000;
    box-shadow: 0 0 10px #0ff;
}
