*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    color: rgb(96, 107, 114);
}
.container
{
    background-color: rgb(2, 19, 30);
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    padding: 30px 0;
    font-weight: 700;
    color: rgb(216, 232, 243);
}
h1 i{
    color: rgb(39, 91, 126);
    vertical-align: 4px;
}
.contain
{   
    width: 750px;
}
.cafe-post
{
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    opacity: 80%;
    margin: 0;
}
.content
{
    background-color: white;
    padding: 0 20px;
}
.header
{
    text-align: center;
    color: rgb(39, 91, 126);
    padding: 30px 0 20px;
}
table,tr,th,td
{
    border-collapse: collapse;
    padding: 8px;
}
table
{
    width:100%;
    text-align: center;
}
td
{
    font-size: 13px;
    padding: 10px;
}
th
{
    color: black;
    background-color: rgba(92, 149, 186, 0.723);
}
th:nth-child(1)
{
    width:45%;
}
td:nth-child(1)
{
    text-align: left;
}
tr:nth-child(odd)
{
    background-color: rgba(173, 211, 237, 0.701);
}
.special
{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.special-item
{
    width: 200px;
    margin-top: 20px;
    text-align: center;
    transition: transform .5s ease-in-out;
}
.special-item:hover{
    transform: scale(1.04);
    
}
.special-item img
{
    width:100%;
    height: 180px;
    object-fit: cover;
}
.item-name
{
    color: black;
    margin: 10px 0 5px;
}
hr
{
    width: 65%;
    margin: 50px auto 0;
}
.about
{
    padding: 0px 70px;
    line-height: 25px;
}
.social-icons i
{
    font-size: 16px;
    background-color: rgba(173, 211, 237, 0.701);
    padding: 10px 12px;
    border-radius: 10px;
    margin: 30px 8px ;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.social-icons i:hover{
    transform: scale(1.05);
    background-color:rgb(156, 205, 238);
}
.social-icons i:active{
    background-color:rgb(101, 183, 238);
}
.Copyright
{
    color: white;
    font-size: 14px;
    word-spacing: 3px;
    letter-spacing: 0.5px;
    margin: 30px 0px;   
}
@media screen and (max-width:771px) {

    .contain{
    width: 500px;
    }
    th:nth-child(1)
    {
        width:30%;
    }
    .about{
        padding: 0 10px;
        font-size: 13px;
    }
    .cafe-post{
        height: 300px;
    }
    .talk-us{
        font-size: 13px;
    }
    .social-icons i{
        font-size: 13px;
        padding: 8px 10px;
    }
    .Copyright{
        font-size: 10px;
    }
}
@media screen and (max-width:512px) {

    .contain{
    width: 320px;
    }
    .content{
        padding: 0;
        font-size: 12px;
    }
    .cafe-post{
        height: 200px;
    }
    td{
        font-size: 10px;
    }
    th:nth-child(1)
    {
        width:30%;
    }
    .about{
        padding: 0 10px;
        font-size: 10px;
        line-height: 17px;
    }
    .talk-us{
        font-size: 10px;
    }
    .social-icons i{
        font-size: 13px;
        padding: 8px 10px;
    }
    .Copyright{
        font-size: 8px;
        margin-bottom: 10px;
    }
}
