﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    background-image: url(../../Images/BG.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment:fixed;
    background-size:cover;
}

.layout-single {
    max-width: 1280px;
    border-left: 1px solid lightblue;
    border-right: 1px solid lightblue;
    height: 100%;
    margin: 0px auto;
    background-color: #add8e659;
}

.layout-content {
    min-height: 100vh;
}

.header-layout {
    min-height: 60px;
    width: 100%;
    background-color: #094f8de3;
    position: sticky;
    top: 0px;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4px 16px;
}

.header-content {
    display: flex;
    justify-content: start;
    gap: 12px;
    align-items: center;
}

.div-home-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .div-home-button a {
        color: #fff;
        text-decoration: none;
    }

        .div-home-button a:hover {
            color: burlywood;
        }

.title-webapp {
    text-align: center;
    flex: 1 1 auto;
}

    .title-webapp h4 {
        text-align: center;
        text-transform: uppercase;
        color: #fff;
    }

.body-layout {
    width: 100%;
    padding: 12px 4px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #add8e659;
   min-height: calc(100vh - 60px);
}

