* {
    box-sizing: border-box;
}

body {
    background-color: hsl(293, 75%, 85%);
    font-family: 'Rakkas', cursive;
    margin: 0;
    padding: 0;
}

.outside {
    height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/********************* OVERLAY ****************/

.overlay {
    border-radius: 20px;
    background-color: white;
    width: 265px;
    height: fit-content;
}

/********************* IMAGE ****************/

.round {
    display: flex;
    justify-content: space-evenly;
    margin-top: 13px;
}

img {
    width: 240px;
    height: 240px;
    border-radius: 10px;
}

/********************* PARAGRAPHS ****************/

.content p {
    text-align: center;
    margin: 20px 20px;
}

.content p:nth-child(2) {
    color: hsl(218, 44%, 22%);
    font-weight: bold;
    font-size: 18px;
}

.content p:nth-child(3) {
    color: hsl(220, 15%, 55%);
    font-size: 13px;
    margin-bottom: 40px;
}