* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    /*outline: 1px solid red;*/
}

.coral-pixels-regular {
    font-family: "Coral Pixels", serif;
    font-weight: 400;
    font-style: normal;
}

body {
    background-color: black;
}

header h1 {
    font-size: clamp(1rem, 10vw, 10rem);
    justify-content: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

main p {
    height: 100vh;
    font-size: clamp(1rem, 5vw, 5rem);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#cd {
    height: 50vh;
}

.spinning {
    animation: spin 2500ms linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

section {
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
