* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, div, section, article, footer {
    font-family: 'Arial', sans-serif;
}
body {
    background-color: #000;
}

header {
    background-color: #000;
    color: #fff;
    text-align: center;
}

main {
    background-color: #000;
}

#box {
    background-color: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
article {
    position: absolute;
    bottom: 0px;
    background-color: #0000007c;
    height: 83.6px;
    width: 200px;
    padding: 10px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

article:hover {
    transform: scale(1.05);
}

a {
    position: relative;
    background-image: url("https://hcti.io/v1/image/3b915971-60b6-4b86-a72a-fc11e5ae087c");
    background-size: cover;
    background-position: center;
    text-decoration: none;
    color: #fff;
    width: 200px;
    height: 200px;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}
a:hover {
    transform: scale(1.05);
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #000;
    text-align: center;
    color: #fff;
}