body {
    background-color: #3f305a;
    /* background-image: url(/pics/water.png);
    background-size: 600px; */
    margin: 0rem;
    padding: 0rem;
    border: 0rem;
    font-family: 'trebuchet MS'
}

body::-webkit-scrollbar{
    display: none;
    scrollbar-width: none;
}

.transition-after-page-load * {
    transition: none !important;
}

.headbox {
    text-align: left;
    font-size: 20pt;
    font-family: 'Georgia';
    color: white;
    padding: 5px;
    display: flex;
    flex-direction: row;
    text-shadow: 3px 3px #002e63;
    background-image: linear-gradient(to right, #19bfc2, #0909e2);
    border-bottom: 10px solid #12d6a5;
}

.headrows {
    max-width: 800px;
    width: auto;
    margin: auto;
    margin-top: 40px;
    display: flex;
    flex-direction: row;
}

a.headbutton {
    width: 200px;
    padding: 10px;
    border: 4px outset #17b8ce;
    text-align: center;
    font-weight: normal;
    text-shadow: 2px 2px #0c4a63;
    text-decoration: none;
    font-size: 13pt;
    color: white;
    background-color: #17b8ce;
    cursor: pointer;
    display: inline-block;
    transition-duration: 0.3s;
    transition-property: background-color, border-color;
}

.headbutton:hover {
    background-color: #12d6a5;
    border: 4px outset #12d6a5;
}

.headbutton:active {
   border-style: inset;
}

.linkbox {
    max-width: 800px;
    width: auto;
    margin: 10px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding-bottom: 40px;
}

a.linkbutton {
    max-width: 600px;
    width: 70vw;
    padding: 26px;
    border: 4px outset #1cdbab;
    text-align: center;
    text-decoration: none;
    font-size: 14pt;
    color: #002e63;
    background-color: #1cdbab;
    cursor: pointer;
    display: inline-block;
    margin-top: 15px;
}

.linkbutton:hover {
    background-color: #22e784;
    border: 4px outset #22e784;
    color: white;
}

.logo {
    background-color: blue;
    border: 6px outset navy;
    display: block;
    width: 60px;
    height: 60px;
    align-self: center;
    margin-right: 20px;
    margin-left: 15px;
}

a.logo:hover {
    transition-duration: 1s;
    transition-property: background-image;
}

.row {
    width: auto;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.centerbox {
    background-color: #17b8ce;
    width: auto;
    max-width: 800px;
    margin: auto;
    margin-top: 40px;
    padding: 0px;
    height: 2000px;
    align-self: center;
    flex-direction: column;
}

.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    z-index: -1;
    flex: none;
    overflow: hidden;
}

.bgshape {
    width: 256px;
    height: 256px;
    z-index: -1;
    position: absolute;
}

.gallerybox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    padding: 15px;
}

.galleryimg {
    max-width: 100%; 
    height: auto;
    scale: 100%;
    align-self: center;
}

.text {
    color: white;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 20px;
}

.bottombox {
    background-color: #187aca;
    border: 3px none #187aca;
    font-size: 10pt;
    text-align: center;
    align-self: center;
    max-width: 800px;
    width: auto;
    padding-top: 2px;
    padding-bottom: 0px;
    margin: auto;
    margin-top: 40px;
    margin-bottom: 60px;
}

.bottom {
    margin: 30px;
    margin-left: 70px;
    margin-right: 70px;
    padding: 20px;
    align-content: center;
}

.box {
    background-color: rgb(33, 56, 189);
    border: 6px outset rgb(44, 29, 177);
    border-bottom: 12px solid rgb(44, 29, 177);
    color: white;
    padding: 20px;
    padding-left: 30px;
}

@media screen and (max-width: 800px) {
    .logo {
        max-width: 30px;
        max-height: 30px;
        margin: 10px;
    }

    .headbox {
        font-size: 10pt;
    }

    .headrows {
        display: grid;
        margin-left: auto;
        grid-template-columns: 1fr 1fr;
    }

    .gallerybox {
        grid-template-columns: 1fr;
    }

    .linkbox {
        display: flex;
        margin: auto;
        flex-direction: column;
    }

    a.headbutton {
        height: 30px;
        width: auto;
        display: inline-block;
    }
}