@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap");
body {
    background-color: rgb(174, 255, 165);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: "Oswald", sans-serif;
}

.image {
    border: 10px solid #005a30;
    border-radius: 12px;
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.containerImage {
    max-width: 800px;
    margin: 15px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.link-button {
    text-decoration: none;
    color: black;
    border: 1px solid gray;
    background-color: #f2f2f2;
    padding: 5px;
    border-radius: 5px;
    box-shadow: 5px 6px 4px #525252a1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    font-size: 17px;
    height: 40px;
    transition:
        box-shadow 120ms ease-in-out,
        transform 120ms ease-in-out;
}


.link-button:hover {
    box-shadow: 0px 0px 4px #888888de;
    transform: translateY(-2px);
    background-color: beige;
    border: 1px solid rgb(133, 133, 91);
}
.flecha {
    transform: rotate(90deg);
    transition: transform 120ms ease-in-out;
}
.link-button:hover .izquierda {
    transform: translateX(4px) scale(1.03);
}
.link-button:hover .derecha {
    transform: translateX(-4px) scale(1.03);
    transform: rotate(-180deg);
}
.link-button img {
    width: auto;
    height: 11px;
    margin-left: 5px;
}

.derecha {
    transform: rotate(-270deg);
    margin-right: 8px;
    box-shadow: 2px 3px #888888;
    transition:
        background-color 0.3s,
        transform 0.3s;
}

.link-button:hover {
    background-color: #ff9901;
    transform: scale(1.05);
    cursor: pointer;
}

#figma {
    border: 50px solid #0D7C01;
    padding: 10px;
    margin-top: 20px;
    margin-left: 20px;
    margin-right: 20px;
    background-color: rgb(174, 255, 165);
}

h2 {
    color: #011101;
    font-size: 24px;
}

h1 {
    color: #011101;
    font-size: 36px;
    text-align: center;
}