@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background-color: aqua;
    background-image: url(assets/b_body2.jpg);
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    font-size: 1.1em;
}

a {
    text-decoration: none;
    color: inherit;
    /* Inherit the color from the parent element */
}

.container {
    background-image: url(assets/b_coffee.jpg);
}

.section::after {
    content: "";
    display: block;
    width: 100%;
    height: 1.8px;
    background: linear-gradient(to right, transparent, #000, transparent);
    margin: 5px 0;
}

h1 {
    font-size: 2em;
}

h6 {
    font-size: 0.8em;
}

.identity,
.profile {
    margin: 5px 0 5px 0;
    padding: 5px 5px;
}

.profile img {
    border-radius: 50%;
}

.intro {
    border: 1px #000;
}

.social {
    margin: 5px 0 0 0;
}

ul {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.footer {
    color: #a1a1a1;
    font-size: 0.8em;
}