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

body{
    font-family: "Bitcount Grid Double", system-ui;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('Images/Background.png')
    no-repeat center center/cover;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 20px;
}

.row{
    width: 100%;
    max-width: 410px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 0 100px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(225, 225, 255, 0.18);
    backdrop-filter: blur(10px);
}

.heading{
    font-size: x-large;
}

#text-input{
    flex: 1;
    padding: 10px 17px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    border-radius: 22px;
    background: rgba(240, 205, 76, 0.3);
    color: #1d1d1d;
}

button{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    background: rgba(240, 205, 76, 0.3);
    border: 2px solid rgba(225, 225, 255, 0.18);
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover{
    transform: scale(1.1);
    background: #e8b941;
}

#recognized-text{
    flex: 1;
    padding: 10px 17px;
    font-size: 1.1rem;
    border: none;
    outline: none;
    background: rgba(240, 205, 76, 0.3);
    color: #1d1d1d;
    pointer-events: none;
} 
