:root{
    --text-color: rgb(255, 255, 255);
    --background-color: rgb(209, 131, 169);
}

* {
    margin: 10;
    padding: 0;

}

body {
    font-family:  sans-serif;
    background-color: var(--background-color);
}

a {
    text-decoration: none;
}

nav {
    margin: 0;
    background-color: rgba(192, 28, 143, 0.767);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    height: 50px;
    width: 1250px;
}

nav .left a {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

nav .right a {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

.abouts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    margin: 50px 0;
}

.abouts .text {
    color: var(--text-color);
    flex: 5;
}

.abouts .text h1 {
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 185px;
    height: 90px;
    font-size: 45px;
    display: grid;
    place-items: center;
}

.abouts .headshot img {
    width: 400px;
    border-radius: 25%;
}

.hobbies {
    color: var(--text-color);
    padding: 0 50px;
    margin-bottom: 100px;
}

.hobbies h1 {
    font-size: 35px;
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 200px;
    height: 100px;
    display: grid;
    place-items: center;
}

.hobbies p {
    text-align: center;
    font-size: 20px;
}

.education {
    color: var(--text-color);
    padding: 0 50px;
    margin-bottom: 100px;
}

.education h1 {
    font-size: 35px;
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 200px;
    height: 100px;
    display: grid;
    place-items: center;
}

.education p {
    text-align: center;
    font-size: 20px;
}

.skills {
    color: var(--text-color);
    padding: 0 50px;
    margin-bottom: 100px;
}

.skills h1 {
    font-size: 35px;
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 160px;
    height: 80px;
    display: grid;
    place-items: center;
}

.skills p {
    text-align: center;
    font-size: 20px;
}

.favs {
    color: var(--text-color);
    margin-bottom: 100px;
    justify-content: space-between;
    padding: 0 50px;
    margin: 50px 0;
}

.favs h1 {
    font-size: 35px;
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 200px;
    height: 100px;
    display: grid;
    place-items: center;
}

.favs h3 {
    font-size: 20px;
    background-color: rgba(192, 28, 143, 0.767);
    border-radius: 40%;
    width: 100px;
    height: 50px;
    justify-content: center;
    align-items: center;
    display: grid;
}

.centerb a {
    color: var(--text-color);
    align-items: center;
    background-color: rgba(192, 28, 143, 0.767);
    font-size: 30px;
    width: 150px;
    height: 90px;
    display: grid;
    border-radius: 10px;
    text-align: center;
    padding: 12px 24px;
}

.centerb i {
    font-size: 50px;
}