﻿/* General */
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Calibri;
   
}

.Header {
    margin: 10px;
    color: white;
}

p {
    padding: 5px;
    color: antiquewhite;
}
a {
    color: darkorange;
}

body {
    display: flex;
    flex-flow: column;
    align-items: center;
    height: 100%;
    width: 100%;
    background-image: url("Images/background.png");
    background-repeat: repeat;
}

.Introduction {
    padding: 25px;
    width: 40%;
    text-align: center;
}

.MainContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 75%;
    height: 100%;
    background-color: black;
    background: rgb(0,0,0,0.5);
    padding: 15px;
}

.Menu {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-end;
    width: 75%;
}

.MenuLink {
    margin: 5px;
}

.Portrait {
    width: 228px;
    height: 302px;
    margin: 10px;
    border: 5px ridge dimgrey;
}

/* Entry */
.EntryContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.EntryContainerTitle {
    padding: 10px;
    color: white;
}

.EntryTime {
    margin-left: 5px;
}

.Entry {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    border-top: 3px double black;
    padding: 25px;
    width: 85%;
}

.EntryBody {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: left;
    padding-top: 20px;
}

.EntryVisual {
    width: 65%;
    padding: 5px;
    margin: auto;
}

.EntryDescription {
    width: 35%;
    /*border: 1px solid green;*/
    padding: 15px;
}

.EntryDetails {
    padding: 5px;
    margin-top: 10px;
}
.EntryLinks {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: start;
}
.EntryLink {
    margin-right: 15px;
}

/* SlideShow */
.SlideContainer {
    width: 100%;
    text-align: center;
}

.SlideImage {
    border: 5px ridge dimgrey;
    width: 725px;
    height: 450px;
    text-align: center;
}

.SlideButtons {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 10px;
}

/* Next & previous buttons */
.PrevButton, .NextButton {
    cursor: pointer;
    width: auto;
    color: white;
    padding: 5px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.NextButton {
    border-radius: 3px 0 0 3px;
}

/* Animations */
/* Fading animation */
.Fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}
