/* # 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 
*/
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
}
html{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    background-color: hsl(212, 45%, 89%);
    position: relative;

}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    gap: 1rem;
    background-color: white;
    width:  273.2px;
    height: 424.2px;
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 1.2rem;
    transform: translate(-50%,-50%);
    transition: all 0.4s;
}
.container:hover{
    box-shadow: 4px 4px 10px rgb(190, 190, 190);
}
/* .qr img{
    width: 100%;
} */
.qr{
    display: flex;
    align-content: space-evenly;
    border-radius: 1.2rem;
    width: 93%;
    height: 60%;
    margin-top: 0.7rem;
    background-image: url('images/image-qr-code.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center
}
.title{
    font-size: 15px;
    width: 80%;
    align-self: center;
    text-align: center;
    font-weight: 700;
    color: hsl(218, 44%, 22%)
}
.description{
    align-self: center;
    text-align: center;
    width: 75%;
    font-size: 13px;
    font-weight: 400;
    color: hsl(220, 15%, 55%);
}