@import 'font.css';

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    font-family: 'RR';
    background: #111111;
    color: white;
}

.share-link {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 20px;
    top: 20px;
}

.share-link_icon {
    width: 20px;
    /* height: 20px; */
}

.wrapper {
    /* max-width: 600px; */
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* border: 1px solid #000; */
    margin: auto;
    padding: 20px 20px;
}

.pic {
    max-width: 100px;
    width: 100%;
    border-radius: 50%;
    margin-bottom: 20px;
}

.title {
    font-family: 'RM';
    margin-bottom: 5px;
    font-size: 28px;
}

.desc {
    text-align: center;
    max-width: 250px;
    line-height: 25px;
    width: 100%;
    margin-bottom: 30px;
    font-size: 16px;
}

.icon {
    max-width: 40px;
    width: 100%;
    margin-bottom: 40px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    background: #1b1b1b;
    padding: 10px;
    border-radius: 10px;
    color: white;
    font-family: 'RR';
    font-size: 14px;
    /* height: 60px; */
}

.links__icon {
    max-width: 30px;
    width: 100%;
}