﻿body {
}
.modalT{
    display:none;
    position: fixed;
    z-index:1;
    left:0;
    top:0;
    height:100%;
    width:100%;
    overflow:auto;
    background: rgba(0,0,0,0.5);
}

.modalcontent{
    background-color:white;
    text-align:center;
    margin-top: 10rem;
    margin-left:auto;
    margin-right:auto;
    width:22rem;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.2), 0 7px 20px 0 rgba(0,0,0,0.17);
    animation-name: modalopen;
    animation-duration: 1s;
}

.modalcontent h1{
    margin-bottom:1rem;
}


.modalcontent p{
    font-size: 1.2rem;
    margin-top:1rem;
}

@keyframes modalopen{
    from{
        opacity:0;
    }
    to{
        opacity:1;
    }
}