/* Public page styles */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;400&family=Open+Sans:ital,wght@0,100;0,400;0,700;1,400&display=swap');

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #f5f5f5;
    color: #121212;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 14px;
}

.profile {
    width: 100%;
    max-width: 480px;
}

.profile__header {
    text-align: center;
    margin-bottom: 36px;
}

.profile__logo {
    width: 120px;
    height: auto;
    max-width: 100%;
    margin-bottom: 26px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 480px) {
    .profile__logo { width: 100px; }
}

@media (min-width: 768px) {
    .profile__logo { width: 150px; }
}

.profile__title {
    font-family: 'Open Sans', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #121212;
}

.profile__bio {
    font-family: 'Open Sans', sans-serif;
    font-weight: 100;
    font-size: 14px;
    line-height: 23.8px;
    color: #808080;
}

.links__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    list-style: none;
}

.links__item a {
    display: block;
    width: 100%;
    padding: 14px 26px;
    background: #b65a50;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    border-radius: 30px;
    text-align: center;
    transition: background 0.15s;
}

.links__item a:hover {
    background: #a04f46;
}

.links__item a:active {
    background: #8f4640;
}

.links__item a .bi {
    margin-right: 0.4em;
    font-size: 1.1em;
    vertical-align: -0.1em;
}

.site-footer {
    margin-top: 36px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #808080;
}
