@charset "utf-8";
@import url(https://fonts.googleapis.com/css?family=Exo:400,900|Open+Sans:400,800);
@import url(https://fonts.googleapis.com/css2?family=Quicksand:wght@400..700&display=swap);


h1 {
    font-family: 'Quicksand', sans-serif;
    font-size: 60px;
    font-weight: 600 !important;
    /*text-align: center;*/
}

h2 {
    font-family: 'Quicksand', sans-serif;
    font-size: 30px;
    font-weight: bold;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
}

.exo {
    font-family: 'Exo', sans-serif;
}

/*
#header h1 {
    width: auto;
    height: 100px;
    margin: 0px;
}
*/

#Hmbox {
    border: 10px outset #59ABE3;
    border-radius: 10px;
    background-color: #3498DB;
    box-shadow: 0 0 120px #6BB9F0;

}

.infobox {
    border: 10px solid #888888;
    border-radius: 10px;
    background-color: #cccccc;

}


.contentbox {
    width: auto;
    background-color: #bbbbbb;
    border: 3px solid #5C97BF;
    border-radius: 5px;
    padding: 5px;

}

#menybox {
    width: auto;
    background-color: #888888;
    float: left;
    border: 3px solid #5C97BF;
    border-radius: 5px;
    padding: 0px;
}

#toppmenybox {
    width: auto;
    height: 60px;
    background-color: #bbbbbb;
    margin: 0px;
    border: 1px solid #bbbbbb;
    padding: 1px;
}

#meny li {
    list-style: none;
    display: inline;
}

#meny li a {
    margin-right: 20px;
    width: 100px;
    height: 50px;
    padding: 10px;
    text-align: center;
    font-family: "Exo", Arial, sans-serif;
    font-size: 20px;
    background: #bbbbbb;
    box-shadow: 0px 0px 1px #999999;
    text-decoration: none;
}

#meny li a:hover {
    cursor: pointer;
    background: #999999;
    color: #000000;
    box-shadow: 1px 1px 5px 2px #999999;
}

#meny a:link, #meny a:visited {
    color: rgb(0, 0, 0);
}

#meny a:active {
    color: rgba(250, 191, 12, 1);
}

#meny a#current {
    background: #999999;
    box-shadow: 1px 1px 10px 2px #999999;
}

#vmeny li {
    list-style: none;
}

#vmeny li a {
    display: block;
    margin-right: 20px;
    width: 100px;
    height: 50px;
    padding: 10px;
    text-align: center;
    color: #000000;
    font-family: "Exo", Arial, sans-serif;
    font-size: 20px;
    background: #999999;
    text-decoration: none;
}

#vmeny li a:hover {
    cursor: pointer;
    background: #bbbbbb;
    color: #000000;
    box-shadow: 1px 1px 5px 2px #777777;
}

#vmeny a:link, #vmeny a:visited {
    color: rgb(0, 0, 0);

}

#vmeny a:active {
    color: rgba(250, 191, 12, 1);
}

#vmeny a#current {
    background: #bbbbbb;
    box-shadow: 1px 1px 10px 2px #999999;
}


section {
    margin: 10px 0;
    padding: 20px;
    background: white;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.portfolio-gallery {
    display: flex;
    flex-wrap: wrap;
}

.project {
    flex: 1 1 calc(33% - 20px);
    margin: 10px;
    text-align: center;
}

.project img {
    max-width: 40%;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .project {
        flex: 1 1 100%;
    }
}

/* Style Modal */
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 5px;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }
    to {
        top: 0;
        opacity: 1
    }
}

/* The Close Button */
.close {
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 2px 16px;
    background-color: #505566;
    color: white;
}

.modal-body {
    padding: 2px 16px;
}

.modal-footer {
    padding: 2px 16px;
    background-color: #505566;
    color: white;
}