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

html {
    scroll-behavior: smooth;
} 

body {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    color: deeppink;
    background-color: rgb(202, 136, 179);
	text-align: center;
    }

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
	position: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    }

h2 {
    color:beige;
    }
    
p { 
    font-size: 15px;
    color: ivory;
    }

.story-content {
    background-color: powderblue;
    inline-size: 600px;
    position: center;
    padding: 15px;
    }

#btn1 {
    width: 70px;
    height: 70px;
    background-color: powderblue;
    border-width: 1px;
    border-radius: 50%;
    border-style: dotted;
    border-color: #fff;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    }
#btn1:active {
    font-size: 16px;
    color: rgb(196, 68, 96);
    }

#btn2 {
    width: 80px;
    height: 80px;
    background-color: powderblue;
    border-width: 1px;
    border-radius: 50%;
    border-style: dotted;
    border-color: #fff;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    }
#btn2:active {
    font-size: 16px;
    color: rgb(196, 68, 96);
    }
.scalloped-box {
    --r: 25px; /* radius of circles */
    height: 320px;
    aspect-ratio: 1;
    padding: calc(1.5*var(--r));
    background: pink;
    mask: 
        linear-gradient(#000 0 0) no-repeat
        50%/calc(100% - 2*var(--r)) calc(100% - 2*var(--r)), 
        radial-gradient(farthest-side,#000 97%,#0000) 
        0 0/calc(2*var(--r)) calc(2*var(--r)) round;
    }
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 10; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
    }

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    }

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    }

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
    } 