*{
    margin:0;
    padding:0;
    box-sizing: border-box;
}

header{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 0.2rem 0.4rem 1rem 0.4rem;
    border-bottom:1px solid gray;
    align-items: center;
    padding: 0.6rem ;
    background: #F8D03A;
background: linear-gradient(217deg, rgba(248, 208, 58, 1) 35%, rgba(0, 0, 0, 1) 100%);
}

.container{
    width: 94%;
    margin: 0.4rem auto;
    border: 1px solid gray;
}

.logo{
    height: 100px;
}

.content{
    display:flex;
    align-items: center;
    justify-content: center;
}

.img_content{
    border-radius: 0.4rem;
    width: 94%;
}

.header{
    text-align: right;
}
.header_title{
    font-size: 1.4rem;
    color:rgb(88, 88, 88);
    text-shadow: white 1px 1px 1px;
}

.header_subtitle{
    color: gray;
    text-shadow: white 1px 1px 1px;
}

footer{
    margin: 1rem 0.4rem 1rem 0.4rem;
    border-top: 1px solid gray;
    padding: 0.4rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.div_footer{
    display: flex;
    align-items: center;
    gap: 0.4rem;
}


@media (max-width: 1200px) {
    header{
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }

    footer{
        margin: 1rem 0.4rem 1rem 0.4rem;
        border-top: 1px solid gray;
        padding: 0.4rem;
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }
     
}