:root {
    --a:#000;
    --b:#E1D9D1;
    --c:1.275rem;
    --d:88%;
    --e:100%;
    --f:2rem;
}

@media screen and (max-width:400px) {
    :root {
        --d:350px;
        --f:.5rem;
    }
}

.container {
    max-width:var(--d);
    padding:0 var(--f);
    display:flex;
    flex-direction:column;
    align-items:center;
    margin:auto;
    z-index:1;
    position:relative;
}

@font-face {
    font-family:'Inclusive Sans';
    src:url(font.woff2) format("woff2");
    font-display:swap;
}

body {
    margin:0;
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    background-color:var(--a);
    padding: 50px var(--f) var(--f);
    font-family:'Inclusive Sans',sans-serif;
    overflow-x:hidden;
    color:var(--b);
}

html {
    scroll-behavior:smooth;
}

header {
    margin-top: 0;
    text-align:center;
}

header h1 {
    font-size: 2.7rem; 
    font-weight: 700;
}

header p {
    font-size: 1.5rem; 
    margin-top: 1rem; 
    color: #777;
}

.img-wrapper {
    width: 25rem;
    height: auto;
    border-radius: 50%;
    overflow: hidden;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header img {
    margin-top: 2rem; 
    width: 25rem; 
    height: auto; 
    border-radius: 50%;
}

section {
    margin-top: 3rem; 
    font-size: 1.2rem; 
    line-height: 1.7;
}

section a {
    display: block; 
    text-align: center; 
    max-width: 200px; 
    margin: 2rem auto 0; 
    padding: 1rem 2rem; 
    background: #222; 
    color: #fff; 
    text-decoration: none; 
    border-radius: 4px;
}

footer {
    margin-top: 5rem; 
    text-align: center; 
    color: #777;
}



@media screen and (min-width:1000px) {
    :root {
        --c:1.2rem;
        --d:var(--e);
        --f:1rem;
    }
}

@media screen and (min-width:1100px) {
    :root {
        --d:77%;
        --f:1.4rem;
    }
}

@media screen and (min-width:1200px) {
    :root {
        --d:77%;
        --f:1.5rem;
    }
}

@media screen and (min-width:1300px) {
    :root {
        --d:70%;
        --f:1.8rem;
    }
}


@media screen and (min-width:1500px) {
    :root {
        --d:40%;
        --f:1.8rem;
    }
}