html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vmin;
    height: 100vh;
    width: 100vw;
    box-sizing: border-box;
    z-index: 1;
}

.doodles {
    height: 90%;
}

.looseleaf {
    position: relative;
    width: 100%;
    max-width: 830px;
    height: 90%;
    background: rgba(255, 255, 255, 0.85);
    color: black;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
    padding: 1.8rem 1.8rem 1.8rem 4.5rem;
    box-sizing: border-box;
    font-family: 'Patrick Hand', serif;
    line-height: 1.8rem;
    font-size: 1.25rem;

    background-image:
        linear-gradient(to bottom, rgba(0, 128, 255, 0.5) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 0, 0, 0.5) 1px, transparent 1px);
    background-size: 100% 1.8rem, 3.5rem 100%;
    background-repeat: repeat-y, no-repeat;
    background-position: 0 4rem, 3.5rem 0;
}

h1 {
    margin-top: -1.5rem;
    margin-bottom: 0.65rem;
    font-size: 3rem;
    line-height: 3rem;
    color: #000000;
}

.hole {
    position: absolute;
    left: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    background: #000000;
    border-radius: 50%;
}

.hole:nth-child(1) {
    top: 3rem;
}

.hole:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.hole:nth-child(3) {
    bottom: 3rem;
}

/* Socials */

.socials-icon {
    width: 75px;
}

/* Mobile */
@media (max-width: 1000px) {
    .doodles {
        display: none;
    }

    .looseleaf {
        height: 80%;
    }

    .socials-icon {
        width: 50px;
    }
}