header {
    background-color: #060018;
    width: 100%;
    height: 100vh;
    border-bottom: 1px solid #f5ea76;
}

.sparks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 50px);
    text-align: center;
}

.sparks h1 {
    font-size: 35px;
    font-weight: 900;
}

.sparks p {
    margin-top: 10px;
    font-size: 18px;
}

main {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-site {
    width: 40%;
    margin: right 5px;
}

.about-site h1 {
    margin-bottom: 10px;
}

.about-site p {
    color: #f4f4f4;
    margin-bottom: 10px;
    font-size: 18px;
}

.abimg {
    width: 40%;
    margin-left: 5px;
}

.abimg img {
    width: 100%;
}

@media (max-width: 768px) {
    header {
        height: auto;
    }

    .sparks {
        height: auto;
        margin-top: 40px;
        margin-bottom: 40px;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-left: 30px;
        margin-right: 30px;
        background-color: #181818;
        border: 1px solid #f5ea76;
    }

    main {
        flex-direction: column;
        height: fit-content;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .about-site {
        width: 90%;
        margin-bottom: 20px;
    }

    .abimg {
        width: 90%;
    }
}