html{
    background-color: rgb(13,17,63);
}

.container{
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

img{
    width: 150px;
    height: 150px;
    border-radius: 40px;
}

.name{
    color: rgb(105,240,174);
    font-weight: bold;
    font-size: 50px;
    text-align: center;
}

.desc{
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
}

button{
    margin: 20px;
    background-color: rgb(105,240,174);
    color: black;
    outline: none;
    border: none;
    padding: 22px;
    font-size: 20px;
    margin-top: 50px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

button:hover{
    background-color: rgb(14, 243, 132);
}

button:active{
    transform: scale(0.95);
}