@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-image: linear-gradient(to right top, #051937, #00466c, #00789b, #00aebb, #27e5ca);
    font-family: Outfit, Georgia, Times, 'Times New Roman', serif;
}

.container {
    width: 300px; 
    background-color: white;
    padding: 14px;
    border-radius: 15px;
    text-align: center;
}

.container img {
    height: 100%;
    width: 100%;
    border-radius: 15px;
    padding-bottom: 5px;
}

.container h1 {
    font-size: 20px;
    padding: 10px;
    font-weight: 700;
    color: hsl(218, 44%, 22%);
}

.container p {
    padding: 5px;
    margin: 5px;
    font-size: 15px;
    font-weight: 400;
    color: hsl(220, 15%, 55%);
}