body {
    margin:0;
    padding: 5px;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    padding-bottom:100px;
}

h1 {
    font-size: 1.8rem;
    text-align: center;
    color: #006699;
    margin: 0;
}

.page__content {
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
    background: #fff;
    overflow: hidden;
    position: relative;
}


.show {
    display: block;
}

main {
    display: block;
    width: 100%;
    max-width: 55rem;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 30px 80px 30px;
    font-size: 18px;
    line-height: 1.6;
}

footer {
    display: block;
    width: 100%;
    max-width: 55rem;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 50px 30px 80px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #006699;
    text-align: center;
}


/* Stílar fyrir modal glugga */

.modal {
    display: flex;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    overflow:auto;
    background-color:#fff;
    background-color:rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index:3;
    display: none;
}

.modal__content {
    position:relative;
    margin: 1rem auto;
    width: 95%;
    max-width:45rem;
    background: #fff;
    border: 1px solid #006699;
    border-radius: 3px;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.5);
}

.modal__header {
    background: #006699;
    color: #fff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: bold;
    width: 100%;
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 20px;
    margin:0;
    box-sizing: border-box;
}

.modal__main {
    padding: 10px 20px;
}

.modal__vidburdur {
    padding-left: 20px;
}

.modal__close {
    color:#fff;
    display:block;
    position:absolute;
    right:5px;
    top:5px;
    width:40px;
    height:40px;
    text-align:center;
    line-height:40px;
    font-size:28px;
    cursor:default;
    z-index:1;
}

.modal__close:hover {
    text-shadow: 0 0 5px rgba(204, 238, 255, 0.7);
}