/* sergiovieira.com */
/* fonts */
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans+Condensed:wght@300;400;700&display=swap');
/* reset */
* {
    box-sizing: border-box;
}
html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-weight: 100;
    font-size: 16px;
    color: #1a1a1a;
    text-align: center;
    background-color: #fefefe;
}
/* layout */
body {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
section {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    flex-basis: 64rem;
    justify-content: center;
    gap: 24px;
    padding: 64px;
}
/* typography */
h1 {
    margin: 0;
    padding: 0;
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 200;
    color: #333;
}
p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 200;
    color: #333;
}
a {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    color: #666;
    padding: 10px 20px;
    text-decoration: none;
    border: 1px solid #999;
    border-radius: 12px;
    transition: all .1s ease-out;
}
a:hover,
a:focus,
a:active {
    color: #333;
    border: 1px solid #666;
}
.middledot {
    display: inline-block;
    width: .6rem
}
/* devices */
@media screen and (max-width: 640px){
    body {
        text-align: left;
    }
    section {
        flex-direction: column;
        /* flex-basis: 64rem; */
        padding: 48px;
    }
    h1 {
        font-size: 1.4rem;
    }
    p {
        width: 100%;
        font-size: 1rem;
    }
    a {
        font-size: 1rem;
        font-weight: 400;
        /* width: 100%; */
        border-radius: 12px;
    }
    span {
        display: inline-block;
        width: 100%;
        margin-bottom: 16px;
    }
    .middledot {
        display: none;
    }
}
