body {

}
#topbar {
    width: 97%;
    border-bottom: 2px solid black;
    text-align: left;
    padding-left: 1%;
    font-size: 5em;
    font-weight: bold;
    font-family: Consolas;
    display: inline-block;

}

#contactinfo {

    text-align: left;
    font-size: 2em;
    font-family: "Calibri Light";
    padding-left: 5%;
}

.mainbody {

    width: 100%;
    height: 40%;
    padding-top: 1.5%;
}

.content,p {
    font-size: 1em;
    font-family: "Calibri Light";
}

#about {
    padding-top: 1%;
    padding-left: 1.5%;
    font-size: 1.8em;
    font-family: "Calibri Light";
    text-align: left;
}

#about::first-letter {
    font-size: 150%;
    color: black;
}

#mainbodytext {

    text-align: center;
    font-size: 2em;
    font-family: "Calibri Light";
}
#mainbodytext1 {
    margin-top: 0.7%;
    text-align: center;
    font-size: 2em;
    font-family: "Calibri Light";
}

h3 {
    font-weight: bold;
    font-family: Consolas;
    font-size: 1.5em;
}

.buttons {
    background-color: lightsalmon;
    color: white;
    width: 100%;
    max-width: 150px; /* Set maximum width for the button */
    height: 3em;
    border: none;
    cursor: pointer;
    font-size: 1em; /* Adjust button font size */
    margin-top: auto; /* Push the button towards the bottom */
    margin-bottom: 10px; /* Adjust margin to position the button in the middle-bottom */
    margin-left: auto; /* Center the button horizontally */
    margin-right: auto; /* Center the button horizontally */
    padding: 8px; /* Adjust button padding */
    box-sizing: border-box; /* Include padding in the width */
}

#text {
    width: 45%;
    display: inline-block;
    margin-top: 1%;
}

#text:hover{
    cursor: pointer;
}
#MyClockDisplay {
    width: 40%;
    text-align: right;
    display: inline-block;
    float: right;

}

#spanel {
    color: #02030a;
    font-size: 2em;
    font-family: Consolas;

}

.clock {
    text-align: right;
    color: #02030a;
    font-size: 0.3em;
    font-family: Consolas;
    margin-top: 2%;


}
.imgrow {

    padding-top: 1%;
    display: flex;
}

.imgcolumn {
    flex: 33.33%;
    padding: 5px;
}

.row {     
    text-align: center;
    margin-left: 15%;
}

/* Add padding BETWEEN each column (if you want) */

.row > .column {
    margin-left: 5%;   
    margin-top: 5%;
}

/* Create four equal columns that floats next to each other */
.column {
    float: left;
    width: 20%;
    height: 15em;
    border: 2px solid black;
}


/* Clear floats after rows */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Content */
.content {
    background-color: white;
 
}

.content, button {
    margin-top: 20%;
}

/* Slideshow container */
.slideshow-container {
    max-width: 50%;
    position: relative;
    margin: auto;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Next & previous buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
    font-family: "Calibri Light";
}

.text:hover {
    cursor: pointer;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 1em;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 1em;
    width: 1em;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Fading animation */
.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}