body {
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    padding-top: 10em;
    position: relative;
    text-align: center;
}

h1 {
    padding: 1em;
    color: black;
}

#show-modal {
    text-align: center;
    background: blue;
    color: #ffffff;
    padding: 15px 15px;
    font-weight: 500;
    font-size: 1.5em;
    border-radius: 3.5px;
    text-decoration: none;
    transition: all 0.15s linear;
}

#show-modal:hover {
    cursor: pointer;
    background: #6666ff;
}

.Mymodal {
    /*position:fixed;
    top:-100vh;
    z-index: 9999999;
    background: rgba(253, 253, 253, 0.671);
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.35s ease;*/
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    padding-top: 60px;
}

.Mycontent-modal {
    /*width: 30%;
    max-width: 500em;
    position: fixed;
    top: -100vh;
    left: 50%;
    margin-left: -300px;
    margin-top: 200px;
    transition: top 0.35s ease;
    background: rgb(165, 165, 240);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    border-radius: 2px;
    z-index:9999999;  */
    border-radius: 6px;
    background-color: #fefefe;
    margin: 8% auto 15% auto;
    /* 5% from the top, 15% from the bottom and centered */
    border: 1px solid #888;
    width: 50%;
    /* Could be more or less, depending on screen size */
}

.Mymodal h2 {
    font-family: 'Lucida', serif;
    font-size: 30px;
    text-transform: uppercase;
    padding: 1em 0.5em 1em 0.5em;
    text-align: center;
    color: #000000de;
    margin: 0;
    background: rgb(165, 165, 240);
    border-radius: 6px;
}

.Mymodal article {
    background: #fcfcfcaf;
    width: 100%;
    overflow: auto;
    border-radius: 6px;
}

.Mymodal article p {
    font-family: 'Lucida', serif;
    font-size: 14px;
    color: #000000;
    text-align: left;
    padding-left: 30px;
    line-height: 1.0em;
    padding-top: 5px;
}

.close-modal {
    color: black;
    position: absolute;
    top: 0;
    right: 25px;
    font-weight: bold;
    font-size: 1.5em;
}

.close-modal:hover {
    cursor: pointer;
}

.Mymodal a:hover {
    color: #000000;
}


/*
.Mymodal:target{
    opacity:1;  
    top: 0;
}

.Mymodal .Mybtn-close-modal {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999991;
}*/

@media screen and (max-width: 450px) {
    .Mycontent-modal {
        width: 70%;
        margin-top: 25%;
    }
}