#my_modal{
	Width: 600px;
	Height: 400px;
	Background: gray;
	Box-sizing: border-box; /* for inside padding */
	Padding: 10px;
    text-align:center;

	/* for center */
	Position:absolute;
	top:25%;
	left:75%;
	Transform: translate(-50%,-50%);

	/* for hider */
	display:none;
    }
#my_modal h2{
    margin:0px;

}
#show_time{
    font-size:24px;
    color:red;
}

/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Fira Sans', sans-serif;
} */

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.button:hover {
    background: none;
    color: #16256e;
    box-shadow: 0 0 0 1px inset #0ad3ef;
    color: var(--primary--color);
}

.button {
    appearance: none;
    border: none;
    outline: none;

    display: inline-block;
    background-color: #0ad3ef;
    color: #FFF;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 29px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: -20px 0px;
}

.button2:hover {
    background: none;
}

.button2 {
    appearance: none;
    border: none;
    outline: none;

    display: inline-block;
    color: #da9696;
    font-size: 20px;
    padding: 10px 15px;
    border-radius: 29px;

    cursor: pointer;
    margin: -60px -20px;
}

.button.large {
    font-size: 24px;
    padding: 15px 30px;
}

.popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

.popup.is-active {
    opacity: 1;
    pointer-events: all;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.popup-inner {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 20px 30px;
    background-color: #f6fafd;
    border-radius: 16px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

.popup h2 {
    color: #313131;
    font-size: 28px;
    font-weight: 600;
}

.popup h3 {
    color: #888;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

.popup p {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 15px;
}

.popup p:last-of-type {
    margin-bottom: 30px;
}