/* # Front-end Style Guide

## Layout

The designs were created to the following widths:

- Mobile: 375px
- Desktop: 1440px

## Colors

- White: hsl(0, 0%, 100%)
- Light gray: hsl(212, 45%, 89%)
- Grayish blue: hsl(220, 15%, 55%)
- Dark blue: hsl(218, 44%, 22%)

## Typography

### Body Copy

- Font size (paragraph): 15px

### Font

- Family: [Outfit](https://fonts.google.com/specimen/Outfit)
- Weights: 400, 700 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #c3d6eb;
  font-family: "Outfit";
}

.content {
  position: relative;
  top: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  width: 320px;
  background-color: white;
  text-align: center;
  padding: 15px;
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 25px;
  box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.2);
  margin-top: 50px;
}

.wrapper {
  width: 100%;
}

.wrapper img {
  width: 100%;
  border-radius: 20px;
}

.text {
  padding: 10px;
}

.text h3 {
  font-weight: 700;
  padding: 10px;
  color: hsl(221, 100%, 15%);
}

.text p {
  font-weight: 400;
  margin: 10px;
  color: hsl(211, 26%, 47%);
  padding: 10px;
  margin: 10px 0;
}
