header{
    display: flex;
    justify-content: space-between;
    background-color: white;
    align-items: center;
    padding: 10px 3%;
}

.note{
    font-size: auto;
}

.logo{
    width: 70%;
    height: 70%;
}

html, body{
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    z-index: 1;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

.body-img{
    object-fit: cover;
    max-width: 100%;
}

.txt-head, .txt{
    margin-right: 8%;
}

.img{
    width: 50%;                
    height: auto;              
    object-fit: cover;

    position: relative;
    top: 10px; 
}

.txt-styles{
    display: flex;
    flex-direction: column;

    width: 55%;                
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

.txt-container{
    display: flex;
    align-items: center;
    justify-content: center;   
    gap: 50px;                 
    margin: 40px 10%;
    margin-left: 50px;
}

.link {
     color: black;
}

.link:hover{
    color: blue;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: Arial, sans-serif;
}

.footer{
    /*background-color: rgba(127, 35, 26);*/
    background-image:
        linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
        url('Hof.JPG');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 1rem 0;
}

.footer a{
    text-decoration: none;
}

.container{
    max-width: 1280px;
    margin: 0 auto;
    width: 95%;
    padding: 0 10px;
}

.footer-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3.5rem;
    padding: 20px;
}

.footer-col1{
    display: flex;
    align-items: center;
}

.footer-col1 .f-Logo{
    border-radius: 10px;
}

.footer-col h4{
    font-size: 1.5rem;
    font-weight: 400;
}

.footer-col .links{
    margin-top: 10px;
}

.footer-col .links li{
    margin-bottom: 6px;
    color: #bfbfbf;
    font-size: 1.1rem;
}

.footer-col .icons{
    margin: 10px 0;
    display: flex;
    gap: 1.5rem;
}

.fa-brands{
    color: #bfbfbf;
    font-size: 30px;
}

.fa-brands:hover{
    cursor: pointer;
    color: white;
}

.footer-bottom{
    text-align: center;
    border-top: 1px solid white;
    margin-top: 1rem;
    padding-top: 1rem;
}

.bIP{
    color: #bfbfbf;
}

@media (max-width:768px){
    .hText{
        font-size: 0;
    }

    .note{
        font-size: 20px;
    }

    .footer-col1{
        margin-bottom: 24px;
    }

    .footer{
        padding: 2rem 0;
    }

    .footer-row{
        display: block;
        padding: 20px;
        gap: 1rem;
    }

    .footer-col{
        margin-bottom: 2.5rem;
    }

    .footer-bottom{
        margin-top: 0;
    }

    .top-bar {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }

    .headline {
        margin-right: 0;
        font-size: 20px;
    }

    .body-img {
        height: auto;
        width: 100%;
        object-fit: cover;
    }

    .txt-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin: 20px 5%;
    }

    .txt-styles {
        width: 100%;
        font-size: 16px;
        margin: 0;
    }

    .img {
        width: 90%;
        height: auto;
        object-fit: cover;
        margin: 20px 0;
    }
}