*,
html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    display: flex;
    flex-direction: column;
}

html,
body {
    height: 100%;
    margin: 0;
}

.header {
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px solid #F0F0F0;
    position: fixed;
    top: 0;
    background-color: rgba(255, 255, 255);
}

.header_content {
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    height: 4vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    width: 96px;
    height: 48px;
    display: inline-block;
    margin-right: 10px;
}

.list_menu {
    list-style-type: none;
    display: inline;
}

.list_menu>li {
    display: inline;
}

.search {
    width: 150px;
    height: 38px;
    background-color: #EFEFEF;
    border: none;
    border-radius: 5px;
    padding-left: 10px;
    margin-right: 10px;
}

.btn_menu {
    width: 120px;
    height: 38px;
    color: #3F3F3F;
    background-color: #EFEFEF;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
    cursor: pointer;
}

.btn_menu:hover {
    background-color: #C62828;
    color: white;
}

.content {
    margin-top: 4%;
    margin-left: 10%;
    margin-right: 10%;
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.h1 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 0.5%;
}

.h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.img {
    width: 487px;
    height: 324px;
    border-radius: 5px;
}

.t1 {
    font: normal 100% / 1.4 Roboto, sans-serif;
    background-color: #EFEFEF
}

.cont {
    gap: 10px;
    display: flex;
    justify-content: center;
    margin-bottom: 1%;
    width: 824px;
}

.text {
    margin-bottom: 1%;
    width: 42vw;
}

.text p {
    margin: 6px 0;
}

.p {
    font-size: 1.2em;
}

.footer {
    width: 100%;
    padding: 10px 0;
    background-color: #515151;
}

.footer_p {
    color: white;
    font-weight: bold;
}

@media screen and (max-width: 480px) {
    .header_content {
        height: 6vh;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .header_content>.footer_p {
        margin-left: 10%;
        margin-right: 10%;
    }

    .search {
        width: 16vw;
    }

    .btn_menu {
        width: 16vw;
    }

    .content {
        margin-top: 10vh;
    }

    .cont {
        flex-direction: column;
        margin-bottom: 10%;
        width: 340px;
    }

    .img {
        width: 340px;
        height: 162px;
    }

    .text {
        width: 80vw;
    }
}

@media screen and (max-width: 768px) {
    .header_content {
        height: 6vh;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .header_content>.footer_p {
        margin-left: 10%;
        margin-right: 10%;
    }

    .search {
        width: 16vw;
    }

    .btn_menu {
        width: 16vw;
    }

    .content {
        margin-top: 10vh;
    }

    .cont {
        flex-direction: column;
        margin-bottom: 5%;
        width: 460px;
    }

    .img {
        width: 460px;
        height: 240px;
    }

    .text {
        width: 80vw;
    }
}