#container{
    margin:0 auto;
    width:80%;
    font-family: verdana,arial,sans-serif;
    font-size:16px;
}
#modalWindow {
    position: fixed;
    font-family: arial,helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    opacity:0;
    transition: opacity 400ms linear;
    pointer-events: none;
}
#modalWindow:target {
    opacity:1;
    pointer-events: auto;
}
#modalWindow > div {
    width: 500px;
    height: 340px;
    position: relative;
    margin: 10% auto;
    padding: 20px 20px 13px 20px;
    background: #ffffff;
    border-radius: 10px;
}

#container{
    margin:0 auto;
    width:80%;
    font-family: verdana,arial,sans-serif;
    font-size:16px;
}
#modalWindow2 {
    position: fixed;
    font-family: arial,helvetica, sans-serif;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99999;
    opacity:0;
    transition: opacity 400ms linear;
    pointer-events: none;
}
#modalWindow2:target {
    opacity:1;
    pointer-events: auto;
}
#modalWindow2 > div {
    width: 500px;
    height: 340px;
    position: relative;
    margin: 10% auto;
    padding: 20px 20px 13px 20px;
    background: #ffffff;
    border-radius: 10px;
}

