*,
*::before,
*::after {
    margin: 0;
    padding: 0;
}

:root {
    --dark-gray-blue: hsl(217, 19%, 35%);
    --desaturated-dark-blue: hsl(214, 17%, 51%);
    --grayish-blue: hsl(212, 23%, 69%);
    --light-gray-blue: hsl(210, 46%, 95%);
    --white: hsl(0, 0, 0, 0);

    --fw-500: 500;
    --fw-700: 700;
}

html {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}


body {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-gray-blue);
}


.wrapper {
    border-radius: 0.75rem;
    margin: 3rem 2rem;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

img {
    width: 100%;
    height: auto;
}

.main-content {
    margin: 2rem 1.5rem 1rem 1.5rem;
}

.content-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
}

h3 {
    color: var(--dark-gray-blue);
}

p {
    font-size: 0.813rem;
    color: var(--desaturated-dark-blue);
    font-weight: var(--fw-500);
}

footer {
    display: flex;
    flex-direction: row;
    margin-top: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: row;
}

.footer-text {
    display: flex;
    flex-direction: column;
    font-size: 0.813rem;
    margin-left: 1rem;
}


footer img {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
}

button {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    border-style: none;
    margin-left: 4rem;
    cursor: pointer;
}

button img {
    width: 0.85rem;
    height: 0.85rem;
}




@media (min-width: 500px) {

    .wrapper {
        display: flex;
        flex-direction: row;
        max-width: 38rem;
    }

    img {
        height: 100%;
        object-fit: cover;
    }

    button {
        margin-left: 7rem;
    }
}

@media (min-width: 1200px) {

    .wrapper {
        display: flex;
        flex-direction: row;
        max-width: 45.625rem;
        height: auto;
    }

    img {
        height: 100%;
        object-fit: cover;
    }

      button {
        margin-left: 11rem;
    }
}







