* {
    margin: 0;
    font-family: "Ubuntu";
}



header {
    background-color: #F6E483;
    height: 144px;
    display: flex;
    width: 100%;
    font-size: 30px;
}

header a {
    text-decoration: none;
    color: black;
}



header ul {
    margin-left: 5%;
    font-size: 25px;
    list-style: none;
    width: 70%;
    align-content: center;
    column-count: 5;
}

#person {
    width: 82px;
    height: 80px;
    margin-top: 30%;
    margin-left: 3%;
}

body{background-color: #E03732;}

main {
    padding: 0 30px 30px;

}

table {
    width: 100%;
    border-collapse: collapse;
    thead {
        tr {
            border-bottom:3px solid black ;
            th {
                text-align: left;
                padding-bottom: 10px;
                text-transform: uppercase;
                color: black;
            }
        }
    }
    tbody{
        tr{
            last-child{
                border: 0;
            }
            td{
                padding: 15px 0;
            }
        }
    }
}

.name{
    font-size: 20px;
    margin-left: 20px;
}

.Produto{
    display: flex;
    align-items: center;

    img{
        border-radius: 6px;
    }
    
}

button{
    cursor: pointer;
}

.qty button{

    display: flex;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0 10px;
    font-size: 20px;
}
.qty{
    background-color: #eee;
    display: inline-flex;
    margin-bottom: 45%;
    padding: 5px 0;
    justify-content: space-around;
    min-width: 60px;
    align-items: center;
    border-radius: 20px;
    span{
        margin: 0 10px;
    }
    
}

.remove{
    background-color: #eee;
    border: 0;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#page-title {
    font-size: 40px;
    padding: 50px 0;
    text-align: center;
}

.content {
    display: flex;

}

#header-box{
    padding: 15px 20px;
    font-size: 18px;
    border-bottom: 1px solid black;
}

#baixo{
    padding: 15px 20px;
    font-size: 16px;
    background-color: #ddd;
}

.info{
    padding: 20px;
    > div{
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    button{
        color: rgb(49, 146, 49);
        background: transparent;
        border: 0;
        display: flex;
        align-items: center;
        font-size: 16px;
    }
    i{
        font-size: 16px;
    }
}

aside {
    min-width: 250px;
    margin-left: 30px;
    .box{
        margin-bottom: 15px;
        border: 1px solid black;
        background: #eee;
    }
    > button{
        background-color: rgb(49, 146, 49);
        display: block;
        width: 100%;
        color: white;
        border: 0;
        padding: 15px 0;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
}

section {
    flex: 1;
}

body p {
    text-align: center;
    margin-top: 15%;
    font-size: 100px;
    color: white;
}

footer {
    display: flex;
    background-color: #F6E483;
    margin-top: 40vh;
    align-items: center;
    justify-content: space-around;
}

footer svg {
    width: 2%;
    margin-left: 10%;
    margin-right: 1%;
}