
a:link {text-decoration: none; color: #0000FF}
a:visited {text-decoration: none; color: #f6f6f3}
a:active {text-decoration: none; color: #f6f6f3}
a:hover {text-decoration: underline; color: #f6f6f3}

:root{
	--modal-duration: 1s;
	--modal-color: rgb(224, 224, 224);
}


.modal{
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);


}
.modal-content{
    border: 5px solid #000;
    border-radius: 2%;
    margin: 15% auto;
    width: fit-content;
    box-shadow: 0 5px 8px 0 rgba(0,0,0,0.5),0 7px 20px 0 rgba(0,0,0,0.17)  ;
    animation-name: openModal;
    animation-duration: var(--modal-duration);
}
.modal-header h2,
.modal-header h3{
    margin: 0;
}

.modal-header{
    background: var(--modal-color);
    padding: 15px;
    color: rgb(0, 0, 0);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
        border-bottom: 2px solid;
}
.modal-body {
    padding: 10px 30px;
    background: var(--modal-color);
    color: black;
    text-align: left;
    font: times;
    font-size: 100%;
    }

.modal-footer{
    background: var(--modal-color);
    padding: 10px;
    color: #000;
    text-align: center;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top:2px solid;
}

.close{
    color: rgb(85, 85, 85);
    float: right;
    font-size: 30px;
    margin: 0;
}
.close:hover,.close:focus{
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

@keyframes openModal {
form{
opacity: 0;}
to {opacity:1 ;}

}