*,body {
    margin: 0;
    padding: 0;
}

#header{
    background-color: rgb(0, 89, 253);
    width: 100%;
    height: 110px;
    border-bottom: 3px solid;
    border-bottom-color: dimgray;
    float: left;
    background-attachment: fixed;
    position: relative;
    background-size: contain;
    z-index: 1000;
}

#logo {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#logo img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}

.textlogo{
    color: rgb(255, 255, 255);
    font-size: 18px;
}

#midle{
    background-color: rgb(255, 255, 255);
    background-attachment: fixed;
    height: 1500px;
    justify-content: center; 
    align-items: flex-start;
    position: relative;
    z-index: 800;
}

#navpanel {
    position: fixed;
    top: 140px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 20px;
    border-radius: 10px;
    border: 4px solid rgba(0, 174, 255, 0.749);
    z-index: 900;
}

#navpanel ul {
    list-style-type: none;
    padding: 0;
}

#navpanel ul li {
    margin-bottom: 10px;
}

#navpanel ul li a {
    text-decoration: none;
    color: black;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

#navpanel ul li a:hover {
    background-color: rgba(0, 89, 253, 0.422);
}

.paneltext{
    border-bottom : 1px solid;
    text-align: center;
}

.container {
    width: 80%;
    margin: 20px auto;
    background-color: #f0f0f0;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 800;
    top: 25px;
    left: 100px;
}

.container:hover {
    transform: scale(1.05);
}

.image {
    width: 100px;
    margin-right: 20px;
}

.content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.text {
    margin-bottom: 10px;
}

.buttons {
    display: flex;
    flex-direction: column;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: flex-end;
}

.buttons button {
    margin-bottom: 10px;
    border: none;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, border-radius 0.3s ease;
    align-self: flex-end;
}

.buttons button:hover {
    background-color: rgba(0, 89, 253, 0.422);
    border-radius: 20px;
    cursor: pointer;
}

.containertext{
    color: rgb(0, 0, 0);
    font-size: 18px;
    text-align: center;
    right: 50px;
    top: 20px;
}

#bottom{
    background-color: rgb(0, 89, 253);
    width: 100%;
    height: 100px;
    border-top: 3px solid;
    border-top-color: dimgray;
    float: left;
    background-attachment: fixed;
}

.buttontext{
    color: rgb(255, 255, 255);
    font-size: 18px;
    text-align: center;
}