body, h1, h2, h4, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #E6EAE9;
    color: #1e2148;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h4 {
    font-size: 36px;
    text-transform: uppercase;
}

.sidebar a {
    color: #fff;
    text-decoration: underline rgba(130, 134, 153, 1);
    transition: text-decoration-color 0.3s;
}

.sidebar a:hover {
    text-decoration-color: rgba(255, 255, 255, 1);
}

section a {
    color: #1e2148;
    text-decoration: underline rgba(130, 134, 153, 1);
    transition: text-decoration-color 0.3s;
}

section a:hover {
    text-decoration-color: rgba(30, 33, 72, 1);
}

header {
    background-color: #1e2148;
    color: #fff;
    text-align: center;
    padding: 10px;
    border-bottom: 5px solid #828699;
}

header h1, header h2{
    letter-spacing: 0.2em;
}

header h2{
    font-weight: normal;
}

header .navigation {
    margin-top: 10px;
    user-select: none;
}

header .navigation a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #fff;
    color: #1e2148;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
    width: 160px;
    text-align: center;
}

header .navigation a:hover, .send:hover {
    background-color: #1e2148;
    color: #fff;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #1e2148;
    color: #fff;
    padding: 10px;
    border-top: 5px solid #828699;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer p{
    display: inline-block;
}

footer img{
    display: inline-block;
    margin: 5px;
    width: 88px;
    transition: transform 0.3s, filter 0.3s;
}

footer img:hover{
    transform: scale(1.05);
    filter: brightness(110%);
}

section {
    margin: 20px;
    padding: 0px;
    color: #1e2148;
    flex: 1;
}

.container {
    display: flex;
    flex: 1;
    opacity: 0;
}

.container, footer, .clicktruc {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.container h2 {
    text-transform: uppercase;
}

.sidebar {
    background-color: #1e2148;
    color: #fff;
    padding: 20px;
    border-right: 5px solid #828699;
    max-width: 50vh;
}

hr{
    min-width: 15vh;
    max-width: 40vh;
    margin-left: 0px;
    color: #828699;
}

.jsp, .jsp2 {
    display: flex;
}

.jsp p, .jsp2 p {
    padding: 10px;
    align-items: center;
    display:flex;
}

img {
    transition: transform 0.3s; /* Apply transition to the base state */
    user-select: none;
}

img:hover {
    transform: scale(1.05);
}

.jsp img{
    max-height: 40vh;
    min-height: 15vh;
    max-width: 40vh;
    display: block;
    border-radius: 10px;
    object-fit: contain;
}

.jsp2 img {
    width: 300px;
    height: 300px;
    display: block;
    border-radius: 10px;
    object-fit: contain;
    transition: none !important;
    transform: none !important;
}

.euh {
    margin: auto;
}

.sidebar img {
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.clicktruc {
    width: 10%;
    height: 10%;
    display: flex;
    justify-content: flex-end;
    transition: none !important;
    transform: none !important;
}

.littlebox {
    display: flex;
    justify-content: space-between;
    background-color: #E6EAE9;
    color: #1e2148;
    border-radius: 10px;
    padding: 10px;
}

.littlebox div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.littlebox img {
    height: auto;
    display: block;
    max-height: 20vh;
    object-fit: contain;
    border-radius: 0%;
    width: 66%;
    overflow: hidden;
}

.littlebox h3 {
    margin: 3px;
}

.content {
    flex: 1;
}

ul li {
    margin-bottom: 5px;
}

.littlebox.programs {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 10px;
    padding: 10px;
    margin: 0px;
}

.littlebox.programs div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(33% - 10px);
    margin-top: 5px;
    margin-bottom: 5px;
}

.littlebox.programs img {
    height: auto;
    display: block;
    max-height: 20vh;
    object-fit: contain;
    border-radius: 0%;
    width: 100%;
    overflow: hidden;
}

.send {
    width: 100px;
    height: 50px;
    font-size: 18px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}
.small {
    width: 15%;
}

.big {
    width: 40%;
}

input, select {
        border: 2px solid #828699;
        border-radius: 10px;
}

input:focus, select:focus {
    outline: 3px solid #828699;
}

@media (max-width:560px){

    .container{
        flex-wrap: wrap;
    }
    .sidebar{
        max-width: 100%;
    }

    .jsp, .jsp2{
        flex-direction:column;
        align-items: center;
    }
    .sidebar img {
    width: 30%;
    }

}

@media (max-height:460px){

    .container{
        flex-wrap: wrap;
    }
    .sidebar{
        max-width: 100%;
    }

    .jsp, .jsp2{
        flex-direction:column;
        align-items: center;
    }
    .sidebar img {
    width: 30%;
    }

}

@media (max-width:300px){
    .littlebox{
        flex-direction:column;
        align-items: center;
    }
}


video, iframe{
    width:64vh; height:36vh; 
    border-radius: 10px;
    background-color: #000;

    /* object-fit: contain; display: block; */
}