@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

body {
    display: grid;
    justify-content: center;
    height: 100vh;
    grid-template-rows: 20% auto;
    font-family: 'Noto Sans Mono', monospace;
    background-color: black;
    color: white;
}

header {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    width: 600px;
    gap: 20px;
    text-align: justify;
}

.texto {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.gif {
  height: 120px;
}

.social {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }

    main {
        width: 70%;
        place-self: center;
    }

    .texto {
        flex-direction: column;
        align-items: flex-start;
    }

    .texto img {
        order: -1;
        place-self: center;
    }
}