@font-face {
    font-family: FantasyRegular;
    src: url(fonts/goudy-medieval/Goudy\ Medieval\ Alternate.ttf);
}

@font-face {
    font-family: FantasyBold;
    src: url(fonts/goudy-medieval/Goudy\ Mediaeval\ DemiBold.ttf);
}

@font-face {
    font-family: Oldenburg;
    src: url(fonts/Oldenburg-Regular.ttf);
}

body
{
    background-color: #0e111c ;
    margin-top: 10px;
}

h1
{
    font-family: FantasyRegular;
    text-align: center;
    font-size: 50;
    padding: 20px;
    color: antiquewhite;
    margin: 5px;
}

h2
{
    font: 24px Oldenburg;
    text-decoration: underline;
    text-align: center;
    margin: 0px;
    font-weight: bold;
}

h3
{
    margin-top: 35px;
    text-decoration: underline;
}

figure
{
    text-align: center;
    margin-bottom: 25px;
}

figcaption
{
    text-align: center;
    font-size: 12px;
    color: #141414;
}

#main-body
{
    margin: 0 auto;
    width: 60%;
}

#project-description
{
    margin: 0 auto;
    width: 40%;
    text-align: center;
    color: antiquewhite;
    font-family: Oldenburg;
    font-size: 14px;
    margin-bottom: 40px;
}

.project-entry
{
    background-color: #b37d42;
    border: 1px solid black;
    margin-top: 30px;
    padding: 15px 60px 50px 60px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    font-family: Oldenburg;
    font-size: 14px;
    text-align: justify;
}

.screenshot
{
    width: 550px;
    border: 1px solid black;
}

.screenshot-holder
{
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.zoom-image
{
    width: 30px;
    opacity: 0.5;
    transform: scaleX(-1);
    position: absolute;
    bottom: 5px;
    right: 5px;
    pointer-events: none;
}


.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
  }
  
  .modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
  }

  .close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
  }

.close:hover,
.close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}

.cursor { cursor: pointer;}