﻿body {
    padding: 0;
}

header {
    display: flex;
    align-items: center;
    background-color: #85cef2;
    padding: 10px;
    /*margin: 0 -15px 10px -15px;*/
}

header img { height: 100px }

header h1 {
    display: inline-block;
    padding: 0;
    margin: 0 0 0 20px;
    color: #fff;
}

.programe-container {
    display: flex;
}

    .programe-container div {
        padding: 10px;
    }

    .programe-container div img {
        max-width: 100%;
    }

@media only screen and (max-width: 600px) {
    header h1 {
        font-size: 23px;
    }
}

.overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(255,255,255, 0.8);
}

.overlay div {
    flex: none;
}

/* The Modal (background) */
.modal {
    display: flex; /* 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 */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(255,255,255); /* Fallback color */
    background-color: rgba(255,255,255,0.7); /* Black w/ opacity */
    justify-content: center;
    align-content: center;
}

/* Modal Content/Box */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 80%;
    display: block;
    padding: 20px;
    max-width: 650px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    animation-name: animatetop;
    animation-duration: 0.4s;
    border: 0;
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }



#loginContent{
    max-width: 600px;
    margin: auto;
}