* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
div[radio-group] {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
    margin-top: 20px;
}

div[radio-group] input[type="radio"] {
    margin-right: 5px;
    margin-left: 15px;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

#text {
    width: 80%;
    margin-bottom: 15px;
    padding: 5px;
    font-size: 16px;
}

#qrcode {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

#button-png {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#button-png:hover {
    background-color: #45a049;
}
#text {
    width: 80%;
    padding: 20px;
    background-color: #FFFFFF;
    border: 1px solid #eee;
    transition: .3s border-color;
    border-radius: 20px;
    outline: none;
    font-family: Verdana;
    font-size: 16px;
    margin: 50px auto;
    text-align: center;
    display: flex;
    justify-content: center;
}

#text:hover, #text:focus{
    border: 1px solid #aaa
    
}

#svgLoad {
    text-align: center;
}

#button {
    margin-top: 50px;
    width: 30vw;
    display: block;
    margin-left: auto;
    margin-right: auto;

    padding: 20px;
    border-radius: 20px;
    outline: none;
    border: 2px solid #FFFFFF;
    background-color: #bbffa6;
    font-family: Verdana;
    font-size: 16px;
    cursor: pointer;
}

#button:hover{
    transition: 0.3s;
    background-color: #FFFFFF;
    border: 2px solid #bbffa6
}

@media (max-width: 470px) {
    #button{
        width: 60%
    }
}