body {
    background-color: #4ecdc4;
}

a {
    outline: none;
}

a:link {
    color: rgb(19, 21, 21);
    text-decoration: none;
}

/* visited link */
a:visited {
    color: rgb(19, 21, 21);
    text-decoration: none;
}

/* mouse over link */
a:hover {
    color: rgb(19, 21, 21);
    text-decoration: line-through;
}

/* selected link */
a:active {
    color: rgb(19, 21, 21);
    text-decoration: none;
}

audio {
    border-radius: 100px;
}

p a {
    font-weight: bold;
}

/* color pallette https://coolors.co/1a535c-4ecdc4-f7fff7-ff6b6b-ffe66d */

.quote {
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #4ecdc4;
    background-color: #f7fff7;
    border-radius: 5px;
    font-style: italic;
    box-shadow: 4px 4px 4px 1px rgba(19, 21, 21, 0.15);
}

.bod {
    height: 100%;
    border-radius: 5px;
    display: flex;
    justify-content: space-around;
}

.nav {
    position: relative;
    border-radius: 5px 0px 0px 5px;
    background-color: #f7fff7;
    flex: 0 0 auto;
    padding: 1rem;
    justify-content: space-around;
    overflow-y: hidden;
}

.box {
    height: 74px;
    width: 60px;
    position: absolute;
    top: 0;
    left: -2rem;
    background-image: url("sign.png");
}

.wrap {
    display: flex;
    width: 90%;
}

.lister {
    background: white;
}

.nav ul {
    border-radius: 5px;
    background-color: white;
    list-style-type: none;
    width: 180px;
    font-size: 2rem;
    font-family: "Courier New", Courier, monospace;
    box-shadow: 6px 6px 6px 1px rgba(19, 21, 21, 0.2);
}

.social {
    position: absolute;
    bottom: 0px;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    background-color: #f7fff7;
}

.holder {
    margin: 1rem;
    padding: 1rem;
    border-radius: 200px;
    background-color: white;
    font-size: 1rem;
    font-family: Courier, monospace;
    display: inline-block;
    box-shadow: 8px 8px 6px 1px rgba(19, 21, 21, 0.5);
}

.title-box {
    margin: 1rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
    background-color: white;
    font-family: Courier, monospace;
    display: inline-block;
    box-shadow: 8px 8px 6px 1px rgba(19, 21, 21, 0.5);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
}

.gallery a {
    display: block;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 4px 4px 6px 1px rgba(19, 21, 21, 0.3);
    transition: box-shadow 0.2s;
}

.gallery a:hover {
    box-shadow: 6px 6px 8px 1px rgba(19, 21, 21, 0.5);
}

.gallery img {
    display: block;
    width: 100%;
    height: auto;
}

.holder-box {
    margin: 1rem;
    padding: 1rem;
    border-radius: 10px;
    background-color: white;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    font-family: Courier, monospace;
    display: block;
    box-shadow: 8px 8px 6px 1px rgba(19, 21, 21, 0.5);
}

/*.beach {
  width: 600px;
  height: 338px;
  background-image: url("./beach.jpg");
}*/

.beach {
    background-image: url("./images/beach_big.jpg");
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 0;
    padding-top: 65.92%; /* (img-height / img-width * container-width) */
    /* (853 / 1280 * 100) */
}

.center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.center-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.content {
    border-radius: 0px 5px 5px 0px;
    background-color: #ff6b6b;
    padding-top: 2rem;
    flex: 1;
    overflow-y: scroll;
    z-index: 1;
    scrollbar-color: white #ff6b6b;
}

.rotate1 {
    transform: rotate(-3deg);
    -webkit-transform: rotate(-3deg);
    -moz-transform: rotate(-3deg);
    -ms-transform: rotate(-3deg);
    -o-transform: rotate(-3deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.rotate2 {
    transform: rotate(3deg);
    -webkit-transform: rotate(3deg);
    -moz-transform: rotate(3deg);
    -ms-transform: rotate(3deg);
    -o-transform: rotate(3deg);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .wrap {
        display: block;
        width: 100%;
    }

    .beach {
        background-image: url("./images/beach.jpg");
    }

    .nav {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .nav img {
        display: none;
    }

    .social {
        display: none;
    }

    .content {
        width: 100%;
    }

    .plaque {
        display: none;
    }
}
