@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');

:root {
    --ff-primary: 'Poppins', sans-serif;
    --clr-primary: #191919;
    --clr-secondary: #000;
    --clr-light: #f1f1f1;
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}


* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


html {
    font-size: 62.5%;
}


body {
    font-size: 1.6rem;
    background-color: var(--clr-primary);
    font-family: var(--ff-primary);
}

h1 {
    font-size: 1.6rem;
}

p {
    font-size: 1.6rem;
    text-align: center;
}

:is(a, h1, p) {
    text-decoration: none;
    color: var(--clr-light);
}

.content {
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

.logo-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 2rem;
    max-width: 70rem;
    gap: 1rem;

    & {
        p {
            width: 100%;
        }
    }
}

.links-icons {
    margin-bottom: 2rem;
}

.links-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    max-width: 30rem;
}



.btn-link {
    border: 1px solid #e1e1e1;
    text-align: center;
    padding: 1.2rem 0;
    display: grid;
    grid-template-columns: 4rem 12rem;
    place-content: center;
    align-items: center;


}