*,
:before,
:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@1,500&family=Roboto&display=swap');

html {
    font-size: 12px;
    font-family: 'Roboto', sans-serif;
    color: #243010
}

body {
    background-image: url('./img/fabric_1.png');

}

a {
    display: inline-block;
    border-radius: .6rem;
    background-color: lightgray;
    padding: .3rem .6rem;
    text-decoration: none;
    color: darkblue;
    transition: all 200ms;
}

a:hover {
    background-color: darkslategray;
    color: white;
}

h1 {
    font-family: 'Raleway';
    font-style: italic;
}

.main {
    width: 100%;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.main__section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.main__article {
    background-color: white;
    text-align: center;
    border: solid 1px white;
    border-radius: 1em;
    box-shadow: 0px 3px 16px rgba(0, 0, 0, .4);
    padding: 1rem 1.5rem;
    width: 100%;
    margin-bottom: 5rem;
}

.main__title {
    font-size: 3rem;
    line-height: 4rem;
    padding-bottom: 1rem;
}

.main__p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2A3C24;
}

.main__p.one {
    padding-bottom: 1rem;
}

.main__linkedin_logo {
    max-width: 2rem;
}



@media only screen and (min-width: 650px) {
    html {
        font-size: 18px;
    }
}