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

body {
    font-family:'Outfit' , 'Roboto', serif;
}

main {
    height: 100vh;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(212, 45%, 89%);
}

img {
    width: 100%;
    border-radius: 12px;
}

.content {
    max-width: 320px;
    font-size: 15px;
    background-color: white;
    padding: 16px;
    border-radius: 20px;
    box-shadow: 0 25px 25px rgba(0, 0, 0, 0.05);
}

.introduction {
    text-align: center;
    padding: 24px 12px 24px;    
}

.introduction-header {
    color: hsl(218, 44%, 22%);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.introduction-detail {
    color: hsl(216, 15%, 48%);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin-bottom: 10px;
}
