*{
    box-sizing: border-box;
}
body{
    background-color: #f0ece0;
    color: #353148;
    font-family: 'IBM Plex Sans';
    margin: 0;
}
.container{
    width: 90%;
    margin: 0 auto;
    min-height: calc(100vh - 60px);
    /* display: flex; */
    /* flex-direction: column; */
    /* justify-content: space-between; */
    /* padding: 30px 0px; */
}
header{
    border-bottom: 2px solid #928e944d;
    padding: 5px 0px;
}
header .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img{
    width: 50px;
    margin-right: 10px;
    border-radius: 5px;
}
header .col{
    display: flex;
    align-items: center;
}
header .col span{
    font-weight: 500;
}
header .col a{
    margin-left: 10px;
    text-decoration: none;
    color: #353148;
    font-weight: 500;
    transition: all .2s;
}
header .col a:hover{
    text-decoration: underline;
}
.first-row h3{
    text-transform: uppercase;
    font-size: 50px;
    margin: 30px 0px;
    text-align: center;
}
.list-wrapper ul{
    list-style: none;
    padding-left: 0;
}
.list-wrapper ul li{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #928e944d;
}
.list-wrapper ul li h3 span{
    font-weight: 400;
    font-size: 15px;
}
.list-wrapper ul li:last-child{
    border-bottom: 0px solid #928e944d;
}
.list-wrapper ul li img{
    width: 30px;
}
footer{
    background: #353148;
    /* border-radius: 5px; */
    padding: 20px 0px;
}
footer .row{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    transform: translateX(5%);
}
footer .col span{
    font-weight: 500;
    color: #fff;
}
footer .col a{
    margin-left: 10px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all .2s;
}
footer .col a:hover{
    text-decoration: underline;
}

@media only screen and (max-width: 800px) {
    header .row{
        flex-direction: column;
    }
    header .col:first-child{
        margin-bottom: 10px;
    }
    .first-row h3{
        font-size: 36px;
    }
    .list-wrapper ul li h3{
        font-size: 15px;
    }
    .list-wrapper ul li h3 span{
        font-size: 13px;
    }
}

@media only screen and (max-width: 570px) {
    header .col:last-child{
        display: none;
    }
    header .col:first-child{
        margin-bottom: 0px;
    }
    footer .row{
        flex-direction: column;
    }
    footer .col{
        margin-bottom: 10px;
    }
}