@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
*{
    margin:0px; padding: 0; box-sizing: border-box;
}

body{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 14px;    
}


img{
    max-width: 500px;
    width: 90%;

}

h1{color:#72529a ;font-weight: 600;}
h2{font-weight: normal; color: #e36076}
h2 a{color:#e36076; font-weight: 600;transition: 0.3s}
h2 a:hover{color:#72529a}


@media all and (min-width:768px){
    body{font-size: 16px;}
}