* {
    border: 0;
    padding: 0;
    margin:0;
    box-sizing: border-box;
}

img {
    display: block;
    width: 100%;
}

#logo{
    width: 150px;
    height: auto;
}

#redes-sociais {
    display: flex;
    justify-content: space-between;
    width: 400px;
    margin-right: 20px;

}   

#menu {
    width: 40px;
    height: auto;
    display: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

a {
    text-decoration: none;
    color: black;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

#cachorro {
    width: 100%;
    height: auto;
    margin-top: 20px;
}

@font-face {
    font-family: roboto;
    src: url(tipos/Roboto/Roboto-VariableFont_wdth\,wght.ttf);
}

@font-face {
    font-family: lobster;
    src: url(tipos/Lobster/Lobster-Regular.ttf);
}

h1 {
    font-family: roboto;
    font-size: 48px;
    margin-top: 40px;
    margin-left: 20px;
}

p {
    font-family: lobster;
    font-size: 20px;
    line-height: 1.5;
    margin: 0 20px 20px 20px;
    margin-right: 50%;
}

#paragrafo2 {
    margin-right: 20px;
    margin-left: 50%;
    text-align: justify;
    text-justify: inter-word;
}

 #menumobile {
    position: fixed;
    transition: top 0.7s;
    top: -250%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgb(81, 255, 90);
    z-index: 100;
}



footer {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    background-color: #f1f1f1;
    padding: 50px
}

#made {
    font-size: 24px;
    color: gray;
    font-family: Arial, Helvetica, sans-serif;
}


@media screen and (max-width: 700px) {
    #menu {
        display: block;
    }

    #redes-sociais {
        display: none;
    }

    p {
        margin-right: 20px;
    }

    #paragrafo2 {
        margin-left: 20px;
    }

    h1 {
        font-size: 36px;
    }

    #closemenu {
        width: 40px;
        height: auto;
        margin: 20px;
    }      

    #redes-sociais-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }   
    
        #redes-sociais-mobile a {
           margin-top: 20px;
            font-size: 24px;
        }
    }