/* Home page styling */
html {
    height: 100%;
}

:root {
    --bs-body-font-family: "Poppins", sans-serif;
    --bs-primary-color: #283583;
    --bs-primary-rgb: 40, 53, 131;
    --bs-secondary-color: #EDF3FF;
    --bs-secondary-rgb: 237, 243, 255;
}

body {
    font-family: var(--bs-body-font-family);
}

#containerDiv {
    margin-top: 0;
    padding-top: 0; 
}


.container {
    padding-bottom: 0;
    margin-bottom: 0;
    
}

.container-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.card{
    background-color: #ffffff;
    
}

.button-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
}


/* submit idea button styling */

.btnKainos {
    border-color: #283583;
    border-width: 0.2em;
    border-style: solid;
    background-color: #283583;
    color: #ffffff;
    text-decoration: none;
    padding: 0.8em 1.5em;
    font-size: 1.25em; 
    border-radius: 0.25em;
    display: inline-block;
    text-align: center;
}

.btnKainos:hover {
    border-color: #3c57cf;
    background-color: #3c57cf;
    color: white;
    text-decoration: none;
    padding: 0.8em 1.5em; 
    font-size: 1.25em;
}

.btnKainos:focus {
    outline: 2px solid #3c57cf; 
    outline-offset: 4px; 
    border-color: #3c57cf; 
    background-color: #3c57cf; 
    color: white;
}

/*bullet points styling*/

 .li{
    text-align: justify; 
    padding-left: 1em;
    text-indent: -1.5em;
    list-style-position: inside;
}

h2 {
    font-size: 30; 
    margin-bottom: 30px;
    margin-top: 30px;
    color: #252d4f;
}

#contentWithImage {
    width: 100%;
    text-align: justify; 
}

#contentWithImage img {
    width: 100%; 
    height: auto; 
    display: block;
    margin: 0 auto; 
}