* { 
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header h1{
    text-align: center;
    font-weight: bold;
    color: #fff;
}
header p {
    text-align: center;
    color: #fff;
}
section h1 {
    text-align: center;
}
.logo img {
    width: 60px;
}
.footer {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,auto));
    gap: 1.5rem;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 10px;
}
.footer-box h2 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}
.footer-box p {
    font-size: 0.938rem;
    margin-bottom: 10px; 
    color: #fff; 
}
.social a .bx {
    color : #fff;
    background-color: gray;
    border-radius: 10px;
}
