body{
    background-color: #000;
}

.banner{
    background-image: url("../assets/stars-2616537.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.content-banner{
    height: 92vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.titulo{
    font-weight: bold;
    background-color: #dadada90;
    border-radius: 35px;
    border: solid 2px #000;
    width: 350px;
    text-align: center;
    letter-spacing: 3px;
    margin-top: 200px;
    transition: 0.2s;
}

.titulo h1{
    padding: 10px;
    color: #0D0D0D;
}

.titulo:hover{
    background-color: #755E8C;
    scale: 1.05;
    cursor: default;
}

.biografy{
    color: #fff;
    letter-spacing: 3px;
    background-color: #151426;
    border-radius: 25px;
    padding: 20px;
    margin-bottom: 150px;
    width: 600px;
}

.biografy h2{
    font-size: 50px;
    padding: 10px;
}

.biografy p{
    font-size: 18px;
    padding: 10px;
}

.photo{
    background-color: #755E8C;
    border-radius: 25px;
    width: 600px;
    height: 300px;
    margin-bottom: 150px;
}