* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins';
}

#round {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(255, 99, 71, 0.76);
    position: relative;
    top: -90px;
    left: -100px;
}

#profile {
    position: relative;
    margin-top: -20px;
    margin-left: 4vw;
    margin-right: 3vw;

}
.title {
    position: absolute;
    padding: 10px;
    left: 15px;
}
.title > h1 {
    font-size: 40px;
    color: tomato;
}
.title > h3 {
    color: rgba(49, 235, 241);
    padding: 3px 0px;
}
.title > p {
    font-size: 16px;
    color: black;
    padding-bottom: 7px;
    width: 40vw;
    padding: 7px 0px;
    margin-bottom: 8px;
}
.picture {
    position: absolute;
    right: 55px;
    top: -70px;
}
.picture > #small-r {
    border-radius: 50%;
    background-image: linear-gradient(
        rgba(255, 166, 0, 0.808),
        rgba(255, 99, 71, 0.788)
    );
    height: 30px;
    width: 30px;
    position: relative;
    bottom: -70px;
}
.picture > #large-r {
    border-radius: 50%;
    background-color: rgba(49, 235, 241);
    height: 80px;
    width: 80px;
    position: relative;
    left: 230px;
    top: 350px;
}
.picture > img {
    height: 38vh;
    border-radius: 50%;
    background-color: rgba(
        255, 133, 111, 0.884
    );
    transform: scale(1.3);
}

.hire-button {
    padding: 8px 21px;
    background-image: linear-gradient(
        rgb(255, 185, 128),
        tomato
    );
    color: white;
    border: 0px;
    border-radius: 5px;
    text-decoration: none;
}