*, *::before, *::after {
	margin: 0;
	padding: 0;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
    /* border: 1px solid white; */
}
 
body {
    height: 100vh;
    background: #23252C;
    font-family: Inter, sans-serif;
    color: white;
    display: grid;
    place-items: center;
}

.card {
    width: 75%;
    margin: 0 auto;
    background: #1A1B21;
    border-radius: 10px;
}

.info, .about, .interests {
    padding: 0 2rem;
}

.info {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.info--name {
    font-size: 25px;
    margin-top: 2rem;
}

.info--profession {
    font-size: 12.8px;
    font-weight: 100;
    color: #F3BF99;
}

.info--website__name {
    font-size: 10.24px;
    margin-top: 0.5rem;
}

.info--button {
    width: 100%;
    height: 34px;
    display: flex;
    justify-content: center; 
    align-items: center;
    margin: 1rem auto 0 auto;
    border-radius: 6px;
}

.info--button--svg {
    height: 1rem;
    width: 1rem;
}

.info--button--email__text {
    padding-left: 0.5rem;
}

.about, .interests {
    display: flex;
    flex-direction: column;
}

.about--title, .interests--title, footer {
    margin-top: 3rem;
    font-size: 1rem;
}

.about--content, .interests--content {
    font-size: 0.8rem;
    font-weight: 100;
    line-height: 1rem;
}

footer {
    height: 64px;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    background: #161619;
    border-radius: 0 0 10px 10px;
}

footer div {
    height: 2rem;
    width: 2rem;
    margin: auto 0;
}