@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary-color: #0a74bd;
    --secondary-color: #032338;
    --black: #01121d;
    --text-primary: #5f5f5f;
    --soft-primary: #0a75bd42;
}

body {
    color: var(--black);
    background-color: white;
}

footer {
    background-color: var(--black);
    color: white;
    padding-top: 50px;
    width: 100%;
}

.all-infos {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.homtech img {
    width: 200px;
}

.homtech p {
    font-weight: 600;
    font-size: 13px;
}

.homtech {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.homtech a {
    color: white;
    font-size: 13px;
}

.links {
    display: flex;
    align-items: left;
    flex-direction: column;
}

.links a {
    color: white;
    padding-bottom: 10px;
    text-decoration: none;
    font-size: 13px;
    width: fit-content;
    transition: transform 0.5s ease, color 0.5s ease;
}

.site-link {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    margin: 30px 0;
}

.site-link a {
    color: white;
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.5s ease;
}

.site-link a:hover,
.links a:hover {
    color: var(--primary-color);
}

.links a:hover {
    transform: translateX(10px);
}

.copy {
    width: 100%;
    text-align: center;
}

.copy p {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 1px;
}

@media (max-width: 720px) {
    .all-infos {
        display: flex;
        flex-direction: column;
    }

    .links {
        margin: 20px 20px;
    }

    .all-infos h3 {
        margin: 0 20px;
    }
}