*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: rgb(228, 218, 236);
    font-family: 'Quicksand', sans-serif;
}
.about{
    width: 100%;
    height: 100%;
    padding: 10% 0;
    position: absolute;
    background-color: #1a0b27;
}
.about-text{
    width: 550px;
}
.main{
    width: 70%;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.about-text h1{
    font-size: 40px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.about-text h2{
    font-size: 20px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.nebulasobig{
    color: #a179ff;
}
.nebulasobig:hover{
    color: red;
    transition: 2s;
}
.redacted:hover{
    color: rgb(145, 120, 255);
    transition: 2s;
}
.about-text p{
    font-weight: 450;
    letter-spacing: 1px;
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 25px;
}
.pro{
    color: rgb(139, 139, 255);
}
.master{
    color: rgb(255, 152, 152);
}
.button{
    background: red;;
    color: white;
    text-decoration: none;
    font-size: 15px;
    border: 1px solid transparent;
    font-weight: bold;
    padding: 13px 20px;
    border-radius: 10px;
}
.button:hover{
    background-color: rgb(163, 0, 0);
    cursor: pointer;
    transition: 1s;
}