:root {
    --warm-black: #201E1C;
    --just-white: #fff;
    --color2: #1f1f1f;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html { 
    font-size: 62.5%;
    font-family: 'DM Sans', sans-serif;
}
body { 
    background-color: black;
}
header {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
}

header .header_img img {
    border-radius: 50%;
    margin-top: 20px;
}

main { 
    width: 450px;
    background-color: var(--color2);
    margin: 0 auto;
    border-radius: 15px;
    display: block;
    height: 90vh;

}
.name { 
    font-size: 3.5rem;
    color: var(--just-white);
}
.address {
    font-size: 2rem;
    color: #F4CE14;
    margin-top: -5px;
    font-family: inter;
}
.header_description {
    color: var(--just-white);
    font-size: 1.4rem;
    margin-top: 20px;
}

.social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.social_buttons {
    color: var(--just-white);
    text-align: center;
    background-color: #968f8f;
    width: 250px;
    height: 50px;
    border-color: black;
    border-radius: 10px;
    margin-top: 15px;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;

}

.social_buttons:hover {
    background-color:  #F4CE14;
    cursor: pointer;
}
.social_buttons img {
    width: 25px; 
    height: 25px;
    display: inline-block;
    margin-right: 5px;
    align-self: center;
}
.social_buttons h3 {
    width: 60px;
    font-size: 1.2rem;
    color: var(--just-white);
    align-self: center;
}
