body {
margin: 0;
}
.tab-box {
    display: flex;
    flex-direction: row;
    max-width: calc(807px + 80px);
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    padding-top: 5px;
    height: 50px;
    justify-content: space-around;
    margin-top: 5px;
    margin-bottom: 0px;
    border-style: none;
    border-width: 2px;
    border-radius: 30px 30px 0 0;
    corner-shape: superellipse(1.5);
}
.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    flex: 1;
    font-family: "Permanent Marker", cursive;
    font-style: normal;
    font-weight: 500;
    font-size: 1.5em;
    border-style: dashed dashed solid dashed;
    border-color: black;
    color: black;
    text-decoration: none;
    border-radius: 30px 30px 0 0;
    corner-shape: superellipse(1.5);
}
.tab.selected {
    border-style: solid solid solid solid;
    border-color: black black rgba(255, 255, 255, 0.453) black;
    border-width: 2px 2px 4px 2px;
    border-radius: 30px 30px 0 0;
}
.tab:not(.selected):hover {
    cursor: pointer;
    transition: transform 0.2s;
    transform: translateY(-4px) scaleY(1.1);
}
.tab.home {
    background-color: rgba(192, 131, 225, 0.8);
}
.tab.about {
    background-color: rgba(88, 124, 232, 0.8);
}
.tab.gallery {
    background-color: rgba(222, 174, 91, 0.8);
}
.tab.contact {
    background-color: rgba(247, 149, 200, 0.8);
}
.content {
    position: relative;
    display: block;
    max-width: 800px;
    margin: auto;
    margin-left: min(20px, auto);
    margin-right: min(20px, auto);
    margin-top: 5px;
    background-color: rgba(146, 238, 241, 0.679);
    height: 100%;
    padding: 40px;
    padding-top: 0px;
    border-style: none solid none solid;
    border-width: 0 6px 0 2px;
}
.content::before {
    content: "";
    position: absolute;
    top: 20px;
    left: -42px;
    bottom: 0;
    width: 80px;
    background-color: transparent;
    background-image: url('/images/spiral-edge.png');
    background-size: 100% auto; /* Stretches width to 12px, auto-scales height */
    background-repeat: repeat-y; /* Perfectly tiles the image downward */
}
.logo {
    display: block;
    margin: auto;
    max-width: 70%;
    height: auto;
    padding: 0 10px 0 10px;
}
.textbox {
    width: 100%;
    margin: 0;
    text-align: center;
    padding: 0;
}
.textbox-middle {
    display:flex;
    flex-direction: row;
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgba(146, 238, 241, 0.679);
    margin: 0;
    text-align: justify;
    padding: 10px 10px 0 10px;
    text-indent: 20px;
    border-style: none solid none dashed;
    border-width: 0 3px 0 2px;
}
.textbox-bottom {
    display:flex;
    flex-direction: row;
    font-family: "Fuzzy Bubbles", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: rgba(146, 238, 241, 0.679);
    margin: 0;
    text-align: justify;
    padding: 10px 10px 5px 10px;
    text-indent: 20px;
    border-style: none solid solid dashed;
    border-radius: 0 0 30px 0;
    border-width: 0 3px 6px 2px;
    corner-shape: superellipse(1.5);
}
.textbox-header {
    font-family: "Permanent Marker", cursive;
    font-style: normal;
    font-weight: 500;
    font-size: 26px;
    text-align: left;
    background-color: rgba(247, 149, 200, 0.8);
    padding: 0 10px 0 10px;
    margin-bottom:0;
    margin-top: 20px;
    border-style: dashed solid solid dashed;
    border-width: 2px 3px .5px 2px;
    border-radius: 30px 0 0 0;
    corner-shape: superellipse(1.5);
}
.full-image {
    display: block;
    width: calc(100% - 4px);
    margin: 20px 0 20px 0;
    height: auto;
    padding: 0;
    border-style: dashed solid solid dashed;
    border-radius: 30px 0 30px 0;
    border-width: 2px 3px 6px 2px;
    corner-shape: superellipse(1.5);
}
.bgimage {
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    z-index: -1;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
.social-media-button {
    display: flex;
    align-items: center;
    justify-content: left;
    width: 50%;
    height: 50px;
    margin: 10px;
    border-style: solid;
    border-radius: 25px;
    border-width: 1px;
    corner-shape: superellipse(1.1);
    color: black;
}
.social-media-icon {
    height: 40px;
    width: auto;
    margin-top: auto;
    margin-bottom: auto;
    margin-left: 5px;
    margin-right: 0px;
    
}