@import url("../../styles/default.css");

/* Background image */
header::before {
    background-image: url("../images/distortic_mirror.jpg");
    background-size: 64px;
    background-repeat: repeat;
    background-attachment: fixed;
    background-position: top;
    background-color: var(--bg-pale-pink);
    height: calc(100% + 10vh);
}

/* Body intro */
.intro h2 {
    margin-bottom: 1vh;
    margin-top: 15vh;
}

.card {
    min-width: 350px;
    max-width: 480px;
}

/* For screens with less than 700px */
@media only screen and (max-width: 700px) {
    header::before {
        top: 0; 
        left: 0;
        width: 100%; 
        height: calc(100%);
        margin-bottom: 50px;
    }

    /* Body intro */
    .intro h2 {
        margin-bottom: 0;
        margin-top: 3vh;
    }
}