

body{
    background-color: antiquewhite;
}

.ugly{
    display:flex;
    justify-content: center;
    align-items: center ;
    flex-direction: column;
    padding: 15px;
    height: 100vh;
}

.ugly img{
    border-radius: 10%;
        border: 2px solid pink;
        box-shadow: 5px 5px 50px pink;
}

.bad{
    display:none;
}

.good{
    display: none;
}

@media screen and (min-width:375px) {
    

.ugly{
    display: none;
}

.bad{
    display: block;
    display: flex;
    justify-content: center;
    align-items: center ;
    flex-direction: column;
    padding: 15px;
    height: 100vh;
    font-size: 1.3em;

}

.bad img{
    border-radius: 25%;
        border: 2px solid pink;
        box-shadow: 5px 5px 50px pink;
}

.good{
    display:none
}

@media screen and (min-width:768px) {

    .ugly{
        display: none;
    }

    .bad{
        display: none;
    }

    .good{
        display: block;
        display: flex;
        justify-content: center;
        align-items: center ;
        height: 100vh;
        flex-direction: column;
        padding: 15px;
        font-size: 1.5em;
        
    }

    .good img{
        border-radius: 25%;
        border: 2px solid pink;
        box-shadow: 5px 5px 50px pink;
    }
}


}