*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: Arial, Helvetica, sans-serif;
    background:linear-gradient(rgba(53, 53, 244, 0.854), rgba(255, 133, 255, 0.497));
}

.matthew-goodman{
    width: 30%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    padding-top: 150px;
}

.matthew-goodman .image img{
    width: 500px;
    height: 500px;
    border-radius: 50%;
}

.matthew-goodman h2{
    font-size: 30px;
    line-height: 40px;
    font-weight: 500;
    margin: 30px 0;
}

.matthew-goodman h3{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;
}

.matthew-goodman p{
    font-size: 20px;
    line-height: 28px;
    font-weight: 400;
    margin: 10px 0;
    text-align: left;
}

.matthew-goodman button{
    display: inline-block;
    font-size: 1.62rem;
    color: #0060a9;
    width: 50%;
    padding: 15px ;
    border: 1px solid #0060a9;
    border-radius: 35px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.matthew-goodman button a{
    text-decoration: none;
    color: #0060a9;
    margin-right: 5px;
}
.matthew-goodman button:hover{
    background-color: #dadada;
}



@media only screen and (max-width:600px){
    .matthew-goodman{
        width: 60%;
        height: 100vh;
        padding-top: 50px;
    }

    .matthew-goodman .image img{
        width: 250px;
        height: 250px;
    }

    .matthew-goodman button{
        font-size: 1.5rem;
        width: 70%;
    }

}

@media only screen and (min-width:601px) and (max-width:900px){
    .matthew-goodman{
        width: 60%;
        height: 100vh;
        padding-top: 50px;
    }

    .matthew-goodman .image img{
        width: 250px;
        height: 250px;
    }
    .matthew-goodman button{
        font-size: 1.5rem;
        width: 70%;
    }
}