/* CSS */

/* Entire site */

* {
    margin: 0; /* Resets margin */
    padding: 0; /* Resets padding */
    box-sizing: border-box; /* Includes padding and border in content width and height */
    font-family: Helvetica, 'Helvetica', Helvetica, 'helvetica-neue', 'Helvetica Neue', sans-serif;
}

/* Site body */

body {
    background-color: #f1f1f5; /* Site background color */
    color: #02040F; /* Site font color */
}

/* Navigation bar */

nav {
    display: inline;
    
    background-color: #e6e6e9; /* Background color */

    padding: 10px; /* Content is 15 pixels away from the edge of the navigation bar */
    position: fixed;
    width: 100vw;
}

.nav-btn {
    background-color: #e2e2e4; /* Background color */
    color: #02040F; /* Font color */

    margin-left: 3.34%; /* Button is 15 pixels away from the button on the left */
    padding: 5px 15px 5px;
    border-radius: 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 18px;
    transition: 0.2s;
    border: 0px;
}

.nav-btn:hover {
    background-color: #e4e4e4; /* Background color */
    transition: 0.2s;
}

.nav-title {
    background-color: #e6e6e9; /* Background color */

    margin-left: 0px; /* Resets earlier margin, button is now 0 pixels away from the edge of the navigation bar */
    padding: 0px 5px 0px;
    font-size: 28px;
}

.nav-next-btn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    float: right;
    margin-right: 2.5%;
}

.nav-next-btn:hover {
    background-color: #008a1e; /* Background color */
    transition: 0.2s;
}

/* Header */

header {
    display: flex; /* Advanced content display */
    flex-direction: column; /* Content is a column */
    align-items: center; /* Content is in the middle of the header */

    background-color: #f1f1f5; /* Background color */

    padding-top: 20%;
    height: 100vh;
}

.title-subtitle {
    font-size: 18px;
    margin-top: 50px;
}

.title-next-btn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    margin-top: 50px;
    padding: 10px 25px 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
}

.title-next-btn:hover {
    background-color: #008a1e; /* Background color */
    transition: 0.2s;
}

/* Information */

.info {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
}

.infonormal {
    display: flex;
    width: 100vw;
    height: 60vh;
    flex-wrap: no-wrap;
}   

.inforeverse {
    display: flex;  
    width: 100vw;
    height: 60vh;   
    flex-wrap: no-wrap;
}

.infobox {
    width: 40%;
    height: 50vh;
    margin: 5vh;
    padding: 5vh;
    background-color: #e6e6ec;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
    border-radius: 3vh;
    line-height: 3;
}

.info-img {
    width: 60%;
    height: 50vh;
    margin: 5vh;
    border: #e6e6ec solid 1vh;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
    align-self: flex-end;
    border-radius: 3vh;
}

.img1 {
    background: url('../img/IMG_7379.png') no-repeat center/100%;
    margin-left: auto;
}

.img2 {
    background: url('../img/IMG_7380.png') no-repeat center/100%;
}

.img3 {
    background: url('../img/IMG_7381.png') no-repeat center/100%;
    margin-left: auto;
}

.img4 {
    background: url('../img/IMG_7382.png') no-repeat center/100%;
}

/* Footer */

footer {
    background-color: #EDEDED; /* Background color */
}

.fbtn {
    background-color: #e4e4e4; /* Background color */
    color: #02040F; /* Font color */

    margin: 0 0 0 2%;
    padding: 3px 10px 3px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
}

.cr {
    margin: 10px 0 0 5px;
}

.contact {
    display: block;
    width: 100vw;
    text-align: center;
    padding: 10%;
}
.pnh {
    font-size: 36px;
    height: 50%;
}

.pn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    margin: 50px 35% 3% 35%;
    padding: 10px 25px 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
    width: 30%;
}

/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------------------------------*/

@media (max-width: 768px) {

/* CSS */

/* Entire site */

* {
    margin: 0; /* Resets margin */
    padding: 0; /* Resets padding */
    box-sizing: border-box; /* Includes padding and border in content width and height */
    font-family: Helvetica, 'Helvetica', 'helvetica-neue', 'Helvetica Neue', sans-serif;
}

/* Site body */

body {
    background-color: #f1f1f5; /* Site background color */
    color: #02040F; /* Site font color */
}

/* Navigation bar */

nav {
    display: inline;
    
    background-color: #e6e6e9; /* Background color */

    padding: 10px; /* Content is 15 pixels away from the edge of the navigation bar */
    position: fixed;
    width: 100vw;
}

.nav-btn {
    display: none;
}

.nav-btn:hover {
    background-color: #e4e4e4; /* Background color */
    transition: 0.2s;
}

.nav-title {
    display: block;
    background-color: #e6e6e9; /* Background color */

    margin-left: 0px; /* Resets earlier margin, button is now 0 pixels away from the edge of the navigation bar */
    padding: 0px 5px 0px;
    font-size: 28px;
}

.nav-next-btn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    float: right;
    margin-right: 2.5%;
}

.nav-next-btn:hover {
    background-color: #008a1e; /* Background color */
    transition: 0.2s;
}

/* Header */

header {
    display: flex; /* Advanced content display */
    flex-direction: column; /* Content is a column */
    align-items: center; /* Content is in the middle of the header */

    background-color: #f1f1f5; /* Background color */

    padding-top: 85%;
    height: 100vh;
}

.title-subtitle {
    font-size: 18px;
    margin-top: 20px;
}

.title-next-btn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    margin-top: 50px;
    padding: 10px 25px 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
}

.title-next-btn:hover {
    background-color: #008a1e; /* Background color */
    transition: 0.2s;
}

.himg {
    width: 90vw;
}

/* Information */

.info {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100vw;
}

.infonormal {
    display: flex;
    width: 100vw;
    height: 120vh;
    flex-wrap: wrap;
}   

.inforeverse {
    display: flex;  
    width: 100vw;
    height: 120vh;   
    flex-wrap: wrap-reverse;
}

.infobox {
    width: 90%;
    height: 50vh;
    margin: 5vh;
    padding: 5vh;
    background-color: #e6e6ec;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
    border-radius: 3vh;
    line-height: 3;
}

.info-img {
    width: 90%;
    height: 50vh;
    margin: 5vh;
    border: #e6e6ec solid 1vh;
    box-shadow:
      0 1px 1px hsl(0deg 0% 0% / 0.075),
      0 2px 2px hsl(0deg 0% 0% / 0.075),
      0 4px 4px hsl(0deg 0% 0% / 0.075),
      0 8px 8px hsl(0deg 0% 0% / 0.075),
      0 16px 16px hsl(0deg 0% 0% / 0.075);
    align-self: flex-end;
    border-radius: 3vh;
}

.img1 {
    background: url('../img/IMG_7379.png') no-repeat center/100%;
}

.img2 {
    background: url('../img/IMG_7380.png') no-repeat center/100%;
}

.img3 {
    background: url('../img/IMG_7381.png') no-repeat center/100%;
}

.img4 {
    background: url('../img/IMG_7382.png') no-repeat center/100%;
}

/* Footer */

.bottom-next-btn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    margin-top: 50px;
    padding: 10px 25px 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;

    margin-bottom: 10%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
}

footer {
    background-color: #EDEDED; /* Background color */
    padding: 5%;
}

.fbtn {
    background-color: #e4e4e4; /* Background color */
    color: #02040F; /* Font color */

    padding: 3px 10px 3px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
    margin: 0 2.5% 0 2.5%;
}

.cr {
    margin: 20px 0 0 5px;
    text-align: center;
}

.contact {
    display: block;
    width: 100vw;
    text-align: center;
    padding: 10%;
}
.pnh {
    font-size: 36px;
    height: 50%;
}

.pn {
    background-color: #00d82f; /* Background color */
    color: #f1f1f1; /* Font color */

    margin: 50px 10% 3% 10%;
    padding: 10px 25px 10px;
    text-decoration:  none; /* Removes underline from link */
    font-size: 24px;
    transition: 0.2s;
    border-radius: 10px;
    border: 0px;
    width: 80%;
}

}