* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: Arial;
}

/* Navbar */

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vh;
    gap: 2vw;

    background-color: #00c3f0;
    border-bottom: solid 3px #0a0d4f;
}

nav a {
    text-decoration: none;
    color: inherit;
    font-weight: bold;
    padding-right: 20px;
}

nav a:hover {
    font-style: italic;
    color: #ec4165;
}

nav img {
    border: solid 3px #0a0d4f;
}

.rightNav {
    justify-content: flex-end;
}

/* Header */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../images/headerBackground.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-bottom: solid 3px #0a0d4f;

    padding: 70px;
}

.headerText {
    color: #00c3f0;
    font-size: 40px;
    text-align: center;
    letter-spacing: 3px;
    padding: 10px;
    border-radius: 5px;
}

header a {
    background-color: #0a0d4f;
    padding: 10px;
    font-size: 20px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    border: solid 2px white;
}

header a:hover {
    background-color: #0083be;
}

/* Main */

article {
    border: 3px solid black;
    padding: 10px;
    border-radius: 4px;
}

.articlesDiv {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: space-evenly;
    gap: 3vw;
}

.articleBio {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.articleBio a {
    background-color: #0a0d4f;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: white;
    border: solid 2px white;
}

.articleBio a:hover {
    background-color: #0083be;
}

.waaromDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    gap: 5vh;
    margin-bottom: 6vh;

    border-top: 3px solid #0a0d4f;
    border-bottom: 3px solid #0a0d4f;
    color: 	#1a1924;
    background-color: #00c3f0;
}

.waaromIntro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1vh;
    flex-direction: column;
}

.waaromContainer {
    display: flex;
    gap: 5vw;
}

.waaromBlok {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;

    padding: 20px;
    border: 3px solid white;
    border-radius: 5px;
    background-color: #93e9ff;
    transition: background-color 1s ease-out;
}

.waaromBlok:hover {
    background-color: #89d7ea;
}

.productsDiv {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

.productContainer {
    display: flex;
    gap: 5vw;
}

.productBio {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1vh;
}

.productBio a {
    background-color: #0a0d4f;
    text-decoration: none;
    border: 3px solid white;
    color: white;
    padding: 10px;
    border-radius: 10px;
}

/* Footer */

/* CreatePHP */

.reserveringDiv {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;

    gap: 2vh;
    margin-top: 20px;
    margin-bottom: 40px;
}

.reserveringDiv div {
    display: flex;
    gap: 5vh;
    justify-content: space-between;
}

.reserveringDiv button {
    border: 2px solid black;
    background-color: #0083be;
    color: #93e9ff;
    padding: 12px;
    text-align: center;
}

/* ViewPHP */

table {
    margin: 0 auto;
}

.readDiv {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3vh;

    margin-top: 30px;
    margin-bottom: 60px;
}

table {
    width: 70%;
    margin: 0 auto;
    border-collapse: collapse;
}

th, td {
    padding: 15px;
    text-align: left;
    border: 2px solid #1a1924;
}

th {
    background-color: #0083be;
}

tr {
    background-color: #00c3f0;
}

/* Media Query */

@media only screen and (max-width: 600px) {
    nav {
        flex-direction: column;
        gap: 2vw;
    }
}

@media only screen and (max-width: 1000px) {
    .articlesDiv {
        flex-direction: column;
        align-items: center;
    }

    .waaromContainer {
        flex-direction: column;
    }

    .productContainer {
        flex-direction: column;
    }
}