Fiz alguns estudos pra saber como deixar o projeto bonito, aproveitei pra fazer como meu portfolio mesmo e esse foi o resultado:
body{
display: flex;
flex: 1;
flex-direction: column;
color: #F6F7EB;
background-color: #232C33;
align-items: center;
justify-content: center;
}
main{
display: flex;
flex: 1;
flex-wrap: wrap;
max-width: 1280px;
justify-content: space-around;
padding: 60px;
align-self: center;
}
#main-left{
display: flex;
flex: 1;
flex-direction: column;
max-width: 600px;
margin-bottom: 30px;
margin-right: 60px;
}
#main-links{
display: flex;
flex: 1;
margin-top: 30px;
max-width: 600px;
max-height: 50px;
gap: 10px
}
#title{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
font-weight: 400;
font-size: 36px;
line-height: 56px;
}
strong{
color: #F45B69;
}
p{
font-family: Arial, Helvetica, sans-serif;
font-size: 24px;
line-height: 36px;
font-weight: 300;
}
a{
font-family: Arial, Helvetica, sans-serif;
background-color: #F45B69;
padding: 15px;
border-radius: 15px;
}
a:link, a:visited{
color: #232C33;
font-weight: 600;
text-decoration: none;
}
img{
align-self: center;
}