*, *:before, *:after {
    box-sizing: border-box;
}
    
body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    margin: 1em 2em;
}

.row {
    display: flex;
    flex-direction: row;
}

.profile {
    display: flex;
    justify-content: center;
    align-items: center;
}


h1 {
    font-size: 2rem;
    padding-bottom: 1em;
    text-align: center;
}

h2 {
    font-size: 1.5rem;
    padding-bottom: 1em;
    text-align: center; 
}

h3 {
    font-size: 1.25rem;
    padding-bottom: 1em;
    text-align: center; 
}

.profile_img {
    height: 75%;
    width: auto;
    border-radius: 200px;
}

p {
    font-size: 1.2rem;
    padding: 2.5em 1em 0 2em;
}

.input::placeholder {
    color: gray;
}

.reviews {
    display: flex;
    flex-direction: column;
justify-content: center;
align-items: center;
margin: 1em 0;
padding: 1em;
gap: 10px;
}

.test {
    width: 90%;
    border: 1px solid gray;
border-radius: 20px;
}

.delete-review {
    display: flex;
    justify-content: right;
align-items: flex-end;
}

@media only screen and (max-width: 600px) {
    p {
        padding: 1em;
    }
}

