﻿body {
    background-color: skyblue; color: #2a2503; font-family: Calibri;
}
.center {
    margin-left: auto;
    margin-right: auto;
}
.flexed_container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    margin: auto;

}
.welcome_option {
    border: 0px solid white;
    box-shadow: 10px 10px 5px #3f95b7;
    text-decoration: none;
    width: 300px;
    height: 300px;
    background-color: #dbebf2;
    font-family: Calibri;
    font-size: 20px;
    color: #2a2503;
    margin-left: 12px;
    margin-top: 8px;
    text-align: center;
}
    .welcome_option:hover {
        animation-name: option_illuminate;
        animation-duration: 1s;
        animation-iteration-count: 1;
        background-color: #F06C21;
    }
    .welcome_option:not(:hover) {
        animation-name: option_deluminate;
        animation-duration: 1s;
        animation-iteration-count: 1;
        background-color: white;
    }
    .welcome_option:link {
        text-decoration: none;
    }
.mainPan {
    display: flex;
    align-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 800px;
}
    .mainPan a {
        text-decoration: none;
    }
.litPan {
    width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.datasection {
    border: 0px solid white;
    box-shadow: 10px 10px 5px #3f95b7;
    background-color: #dbebf2;
    width: 700px;
    min-height: 100px;
    font-family: Tahoma;
}
.datafield {
    border: 1px solid #306378;
    border-radius: 13px;
    height: 26px;
    min-width: 200px;
    padding-left: 4px;
}
.dataDLImage {
    background-color: #3f95b7;
    color: #dbebf2;
    border: 0px solid;
    border-radius: 5px;
}
.dataButton {
    border: 1px solid #F06C21;
    border-radius: 13px;
    height: 26px;
    background-color: white;
    color: black;
}
.listingPanel {
    border: 1px solid #306378;
    border-radius: 13px;
    background-color: #dbebf2;
    box-sizing: border-box;
    padding-left: 10px;
    padding-bottom: 10px;
}
@keyframes option_illuminate {
    from {background-color: white}
    to {background-color: #F06C21}
}
@keyframes option_deluminate {
    from {
        background-color: #F06C21
    }

    to {
        background-color: white
    }
}
.welcome_logo {
    position: relative;
    width: 500px;
    left: auto;
    right: auto;
    transform: translate(-50%, -50%) top: 25px;
}
.menu {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
    background: #f2f2f2;
    padding: 10px 20px;
}

.menu li a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    border: 1px solid #306378;
    padding: 4px;
}

    .menu li a:hover {
        color: #ffffff;
        background-color: #F06C21;
    }