* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: hsl(212, 45%, 89%);
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

#qrcode {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    margin-bottom: 5%;
}

.frame {
    height: 460px;
    width: 320px;
    padding: 20px;
    border-radius: 15px;
    overflow: hidden;
    background-color: white;
    box-shadow: 5px 10px black;
}

p {
    color: gray;
    font-size: 15px;
}

a {
    color: grey;
}

a:hover {
    color: darkorange;
}
