@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    overflow: hidden;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background: rgb(10, 50, 100);
    font-family: 'Roboto', sans-serif;
}

.qr-container {
    display: grid;
    position: relative;
    place-items: center;
}

.qr-container img {
    width: 275px;
    height: 275px;
    border-radius: 5px;
    border: 20px solid white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.qr-container .input-container {
    display: flex;
    flex-direction: column;
}

.qr-container input {
    padding: 5px;
    resize: none;
    border: none;
    font-size: 20px;
    color: aliceblue;
    margin: 40px 0 0;
    min-width: 600px;
    text-align: center;
    border-radius: 5px;
    background: rgba(10, 50, 100);
    border-bottom: 2px solid rgb(255, 100, 100);
}

.qr-container input:focus {
    outline: none;
}

.qr-container input::placeholder {
    opacity: 0.6;
    font-size: 16px;
    color: aliceblue;
    text-align: center;
}

small {
    opacity: 0.6;
    margin-top: 4px;
    color: aliceblue;
    margin-left: auto;
}

.qr-container button {
    width: 275px;
    height: 40px;
    border: none;
    color: black;
    font-size: 16px;
    margin-top: 40px;
    padding: 10px 5px;
    text-align: center;
    border-radius: 10px;
    letter-spacing: 0.2px;
    background: rgb(255, 100, 100);
}

.qr-container button:hover {
    opacity: 0.9;
}

.qr-container button:active {
    transform: scale(0.9);
}
