body{
    box-sizing: border-box;
    margin: 0;
    font-family: sans-serif;
}

body ul{
    list-style-type: none;
}

header{
    width:100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:10px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #DF8543;
    box-sizing: border-box;
    color: white;
}

header p{
    font-size: 25px;
    font-weight: bold;
}

header div ul{
    display: flex;
    gap: 30px;
}

.header_button{
    color: white;
    text-decoration: none;
}

#con_main{
    width: 100%;
    padding: 50px;
    box-sizing: border-box;
    gap:50px;
    display: flex;
    flex-direction: column;
    background-color: rgb(237, 226, 212);
}

#con_img{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

#con_img div a img{
    width: 500px;
    height: 500px;
    background-color: antiquewhite;
}

footer {
    width:100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding:10px;
    padding-left: 50px;
    padding-right: 50px;
    background-color: #DF8543;
    box-sizing: border-box;
    color: white;
}

footer ul {
    height: 120px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
}

.button{
    background-color: #DF8543;
    border: solid 6px #DF8543;
    border-radius: 5px;
}

.button a{
    color: white;
    text-decoration: none;
}

@media screen and (max-width: 500px){
    header{
        width:100%;
        height:100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding:50px;
        padding-top: 0px;
        margin-top: 0px;
        background-color: #DF8543;
        box-sizing: border-box;
        color: white;
    }

    header div ul{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 10px;
        box-sizing: border-box;
    }

    #con_img div  a img{
        width: 350px;
        height: 350px;
        background-color: antiquewhite;
    }

    footer {
        width:100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
        padding:50px;
        padding-top: 0px;
        margin-top: 0px;
        background-color: #DF8543;
        box-sizing: border-box;
        color: white;
    }

    footer ul {
        height: 120px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        box-sizing: border-box;
        padding: 0px;
    }

}

