/* ========== RESET ========== */

html {
    font-size: 10px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

*, *::before, *::after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

/* ========== HEADER ========== */

header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 0;
}

.header-logo {
    max-width: 25%;
    width: 100%;
    height: auto;
}

/* ========== CONTAINER ========== */

.container {
    margin: 5rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
    margin-top: 3rem;
}

.container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1.8rem;
    transition: 
        transform 0.3s,
        box-shadow 0.3s;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.container a {
    max-width: 50%;
    width: 100%;
    display: inline-block;
    align-self: center;
}

.container img:hover {
    transform: scale(1.01);
    box-shadow: 0 0 15px rgba(0,0,0,1);
}