:root {
    --white: #fff;
    --black: #000;

    font-family: 'Roboto', sans-serif;
}

h1,
p,
body,
button {
    margin: 0;
}

main {
    margin: 0 auto;
    max-width: 500px;
    padding: 0 auto;
}

.container {
    margin: 15px 0 15px;
    background-color:#c7c4c4c4;
    border-radius: 15px;
}

header {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logotipo {
    mix-blend-mode: multiply;
    width: 150px;
    height: 150px;
}

.instagram-user {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 60px;
}

section {
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    background: var(--black);
    text-decoration: none;
    color: var(--white);
    width: 100%;
    max-width: 270px;
    margin-top: 30px;
    height: 50px;
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 250ms;
}

.link:first-child {
    margin-top: 0;
}

.link:hover {
    filter: brightness(1.2);
    transform: translateY(-2px);
}

.since {
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 30px;
    padding-bottom: 10px;
}



@media screen and (min-width: 360px){
    body {
        background-image: url(assets/background-image.jpg-3.jpeg);
        background-position: center;
        background-size: cover;
    }
}


@media screen and (max-width:768px){
    body {
        
            background-image: url(assets/background-image.jpg-3.jpeg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
        
    }
}
