* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    background-color: #ffb4c7;
    background-image: linear-gradient(-45deg, #ffc549 25%, transparent 25%, transparent 50%, #cccccc 50%, #cccccc 75%, transparent 75%, transparent);
    background-size: 100px 100px;
    overflow-x: hidden;
    max-height: 100vh;
}

p,
h2 {
    font-family: 'Caveat', cursive;
    /* user-select: none; */
}

.header {
    text-align: center;
    font-family: 'Caveat', cursive;
    font-size: 10vw;
}

.header h1 {
    background: linear-gradient(45deg, #FFC0CB 20%, #f0f0f0 50%);
    background-size: 2px 2px;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
    font-size: 1em;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    margin-top: 2vh;
}

.box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: calc(33.333% - 20px);
    margin: 5px 10px;
    background-color: #ffecdf8a;
    color: white;
    text-align: center;
}

.text-box {
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.text-box p {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 20px;
}

.an-button-container {
    width: 90%;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    margin-top: 30px;
}

.an-button {
    font-family: 'Caveat', cursive;
    font-size: 300%;
    text-align: center;
    background-color: #f0f0f0;
    background: linear-gradient(-45deg, #FFC0CB 20%, #f0f0f0 50%);
    background-size: 5px 5px;
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #fda0bf;
    font-weight: bold;
    border: none;
    cursor: pointer;
    user-select: none;
}

.an-button:hover {
    color: #fadce5;
    background: linear-gradient(45deg, #aa767f 20%, #d3c6c6 50%);
    background-size: 5px 5px;
}

@media (max-width: 767px) {
    .container {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .box,
    .header h1,
    h2 {
        width: 97%;
        max-width: 100%;
        margin: 5px auto;
        box-sizing: border-box;
    }

    .header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 5em;
    }
}