@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

* {
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f2f2f2;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
    margin: 1rem;
    height: 50vh;
}

.container img {
    width: 100%;
    min-width: 100px;
    max-width: 250px;
    margin-bottom: 25%;
}

h1,h2,h3,h4,h5,h6,p {
    color: #595959;
}

.container h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
}

.container p {
    text-align: justify;
    padding: 0 1rem;

}