* {
    color: rgb(0, 0, 0);
}

body {
    background-color: rgb(105, 194, 94)
}
.main /*this one is used for defining where this flexbox will be placed*/ {
display: flex;
flex-direction: row;
justify-content: space-between;
}

#intro {
    flex: 0 1 auto;
}

#socials {
    flex: 1 0 auto;
    padding-left: 20px;
}

#all {
    background-color:rgb(171, 224, 187);
    border-radius: 20px;
    padding: 10px;
    margin: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

