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

body {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: hsl(218, 44%, 22%);
    background-color: hsl(212, 45%, 89%);
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.main {
    width: 320px;
    background-color: #fff;
    align-content: center;
    border-radius: 15px;
    margin: auto;
       
}

.main-content {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding: 15px 0 15px 0;
    margin: auto;
  }

.qr-code {
    width: 90%;
    margin: auto;
    display: block;
    align-items: center;
    align-content: center;
    border-radius: 10px;

}

h1 {
    font-weight: 700;
    font-size: large;
    text-align: center;
    }

p {
    font-weight: 400;
    text-align: justify;
}

h1, p {
    margin: 1em auto;
    text-align: center;
}

.text {
    width: 85%;
    padding: 0 10px;
    background-color: #fff;
    margin: auto;

}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: hsl(216, 15%, 48%);
    color: white;
    text-align: center;
 }

.attribution { 
    font-size: 11px; 
    text-align: center; 
    }
    

.attribution a {
    color: hsl(218, 44%, 22%); }
