html, body {
    position: relative;
    margin: 0;
    height: 100%;
    font-family: 'Josefin Sans';
}

.owner-alt {
    background-color: #333;
    color: white;
    vertical-align: middle;
    font-size: 30px;
    left: 50%;
    height: 30px;
    padding-left: 14px;
    padding-top: 5px;
}

.owner {
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    left: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #fff; /* Set a background color */
    background-color: rgba(255, 255, 255, 0.3);
    color: #000; /* Text color */
    font-family: 'Josefin Sans';
    font-size: 30px;
    padding: 15px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
}

#owner-pic {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 99;
    background-color: #000;
    width: 20%;
} 

.logo {
    background-image: url('../img/system/logo-black.png');
    position: fixed; /* Fixed/sticky position */
    bottom: 20px; /* Place the button at the bottom of the page */
    right: 30px; /* Place the button 30px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: #fff; /* Set a background color */
    background-color: rgba(255, 255, 255, 0.3);
    background-size: contain;
    color: white; /* Text color */
    padding: 15px; /* Some padding */
    border-radius: 50%; /* Rounded corners */
    width: 50px;
    height: 50px;
    display: none;
}

.topnav {
    overflow: hidden;
    background-color: #333;
}

.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.topnav a:hover {
    background-color: #ddd;
    color: black;
}

.topnav .icon {
    display: none;
}

.content {
    margin-top: 20px;
    margin-left: 20px;
    margin-bottom: 100px;
    font-size: 110%;
}


a {
    color: #000;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

.swiper-container {
    width: 100%;
    height: 100%;
    margin-bottom: 30px;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    object-fit: cover;

    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.swiper-slide .title {
    top: 30px;
    left: 1px;
    position: absolute;
    z-index: 9999;
    font-size: 110%;
    margin-bottom: 50px;
    margin-left: 5px;
    padding: 30px;
    color: #000;
    background-color:  rgba(255,255,255, .9);  
    -moz-box-shadow: inset 0 0 15px 5px rgba(200,200,200, .9);
    -webkit-box-shadow: inset 0 0 15px 5px rgba(200,200,200, .9);
    box-shadow: inset 0 0 15px 5px rgba(200,200,200, .9);
    border-radius: 40px;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
}

img {
    max-width: 100%;
    max-height: 100%;
}

@media screen and (max-width: 600px) {
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 600px) {
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }
    .owner {
        font-size: 15px;
    }
    .logo {
        width: 20px;
        height: 20px;        
    }
    #owner-pic {
        width: 40%;
    } 
    .content {
        margin-top: 20px;
        margin-left: 20px;
        font-size: 90%;
    }
    .swiper-slide .title {
        font-size: 90%;
        margin-bottom: 50px;
        padding: 30px;
    }
}
