body{
    background-color:white;
    margin:0px;
    font-family: "verdana";
    display: flex;
    flex-direction: column;
}
html, body {
    height: 100%;
}

main {
    flex: 1;
}
h1, h2{
    font-family: "Open Sans", sans-serif;
    color:#0065B3;
}
h3, h4, h5, h6 {
   font-family: "Open Sans", sans-serif; 
}

header{
    background-color: white;
    width: 100%;
    margin:0px;
    text-align: center;
    position: fixed;
    top: 0px;
    border-bottom-style: solid;
    border-color:rgb(185, 185, 185) ;
    border-width: 2px;
    z-index: 1;
}

header .image{
    padding-left:40px;
    float: left;
}

header .contact{
    float: right;
    text-align: left;
    padding-right: 30px;
    padding-top:60px;
}
header a{
    color:black;
    text-decoration: none;
}

.spaceholder{
    padding : 50px;
    color:rgb(235, 234, 234);
}

.topnavbar .fas{
   color:#0065B3;
   font-size: 50px;
   text-align:center; 
   width: 100%;
}

.action{
    color:#f5b847eb;
}

.highlight{
    color:#0065B3;
}

.topnavbar{
    margin: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.topnavbar-box {
    text-decoration: none;
    font-size:medium;
    padding:10px;
    background-color:whitesmoke;
    border-radius:5px;
    margin:10px;
    display: inline-block;
}
.topnavbar-box:hover{
    transform: translate(0px,-5px);
}
.topnavbar-box a{
    color: black;
    text-align: center;
    text-decoration: none;
    font-size:medium;
    padding:30px;   
}

.main{
    text-align: center;
    margin: 20px 0;
    margin-bottom: 40px;
    padding:200px;
    background-image: url('img/start_page.jpg');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
    font-family: "verdana";
    font-size: 40px;
}


.main p{
    font-style: italic;
}

.content {
    display: flex;
    justify-content: space-between;
}
.content img{
    height: auto;
    margin-top:20px;
    border:#555 1px solid;
}
.text {
    width: 60%;
}
.main .image {
    padding-top: 50px;
    width: 35%;
    height: auto;
}
.main .image img{
    width: 50%;
    height: auto;

}

article{
    padding:10px;
    padding-left: 30px;
    background-color: white;
}
article a{
    text-decoration: none;
    color:#f5b847eb;
}

.tiles-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
padding: 20px;

margin: auto;
}

.tile {
background-color:whitesmoke;
border-radius: 5px;
overflow: hidden;
}


.tile img {
background-color: #fff;
width: 100%;
height: auto;
}

.tile-content {
padding: 10px;
}

.tile-content strong {
font-size: 16px;
color: #333;
display: block;
margin-bottom: 10px;
}

.tile-content p {
margin: 0;
color: #555;
}

.button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0065B3;
    color: #f5b847eb;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}
.lists-container {
    display: flex;
    justify-content: space-between;
}

.list-maschinenbau, .list-sondermaschinenbau {
    flex: 1; /* Makes both divs take up equal space */
}

/* Using !important */
div.list-maschinenbau > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0px !important; /* Reduced gap and using !important */
}
div.list-sondermaschinenbau{
    padding-left:20px;
}
.info-box {
    border: 2px solid #0065B3; /* Blue border */
    color: #0065B3ff; /* Blue text */
    padding: 20px; /* Adds some padding inside the box */
    margin: 10px 0; /* Adds some space around the box */
    display: flex;
    display: flex;
    justify-content: flex-start; /* Aligns children to the left */
    align-items: flex-start; /* Keeps items aligned at the top */
}   
.info-box .fas.fa-circle-info {
    margin-right: 10px; /* Adjust the space between the icon and the text as needed */
    font-size: 24px; /* Optional: Adjust the size of the icon */
}

.stellen-container {
    display: flex;
    align-items: left;
}
.Ausbildung {
    text-align: left;
    padding-left: 40px;
    margin-left: 20px; /* Adds some space between the two divs, adjust as needed */
}
nav{
    position:fixed;
    bottom:0;
    background: transparent;
    width: 100%;
    padding:20px;
    text-align:center;
    backdrop-filter: blur(4px);
}

nav a{
    background-color: #0065B3;
    border-radius: 20px;
    text-decoration: none;
    color: white;
    padding:10px;

}
nav a:hover{
    font-size:large;
    border-radius:30px;
}

.company-footer{
    text-align: center;
    color: rgb(235, 234, 234);
    background-color: rgb(92, 92, 92);
    padding:10px;
}
.company-footer a{
    text-decoration: none;
    color:#f5b847eb;
}
.custom-footer {
    background-color: black;
    display: flex;
    color: rgb(235, 234, 234);
    padding: 10px;
    padding-bottom: 50px;
    padding-right: 50px;
    justify-content: space-between; /* Add this line */
    align-items: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-grow: 1;
    text-align: center; /* Add this line */
}

.custom-footer a {
    text-decoration: None;
    color: rgb(235, 234, 234);
}