

body {
    background:#6495ED;
}

html, body{
    height: 100%;
}

p{
     text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        padding: 6px;
}

img{
    border: 3px solid #000080;
    border-radius: 8px;
}

.slideshow {
    position: relative;
    width: 300px;
    height: 200px;
    margin: 20px auto;
    overflow: visible;
    background-color: transparent;
    box-sizing: border-box;
}

.slide {
        position: absolute;
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        top: 8px;
        left: 8px;
        background: black;

        object-fit: contain;
        opacity: 0;
        transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

header {
    background: linear-gradient(to bottom, #000080, #6495ED, #FFFFFF);
    color: white;
    padding: 10px;
    text-align: center;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 5px;
    cursor: pointer;
}

.prev { left: 11px; }
.next { right: 11px; }

section {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

h2 {
    color: #000080;

}

img {
    display: block;
    margin: 10px auto;
    border: 3px solid ;#000080
    border-radius: 8px;
}


table {
    margin: 20px auto;
    border-collapse: collapse;
}

ul, ol {
    display: inline-block;
    text-align: left;
    margin: 0 auto;
}

.profile-pic {
    width: 150px;
    height: auto;
}
