File size: 1,751 Bytes
05b45a5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    main {
        gap: 1rem;
    }

    .text-editor,
    .controls {
        padding: 1rem;
    }
}

@media (max-width: 1023px) {
    h1 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    .cup {
        width: clamp(20px, 3vw, 30px);
        height: clamp(25px, 4vw, 40px);
    }

    .handle {
        width: clamp(8px, 1.5vw, 12px);
        height: clamp(15px, 2.5vw, 20px);
        right: clamp(-8px, -1.5vw, -12px);
        top: clamp(6px, 1vw, 8px);
    }

    .steam {
        top: clamp(-8px, -1.5vw, -12px);
    }

    .steam::before,
    .steam::after {
        width: clamp(4px, 0.75vw, 6px);
    }
}

@media (max-width: 768px) {
    .container {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .text-editor,
    .controls {
        padding: 0.75rem;
    }

    .voice-select-container {
        flex-direction: column;
        align-items: stretch;
    }

    .options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .button-group {
        flex-direction: column;
    }

    .generation-options {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }

    .format-select {
        width: 100%;
    }

    .player-container {
        padding: 0.75rem;
    }

    .player-controls {
        padding: 0.5rem;
        gap: 0.5rem;
    }

    .volume-control {
        gap: 0.25rem;
    }

    .volume-slider {
        width: 60px;
    }

    .wave-container {
        height: 32px;
    }

    .download-button {
        top: 0.5rem;
        right: 0.5rem;
        width: 26px;
        height: 26px;
    }

    .download-icon {
        width: 26px;
        height: 26px;
    }
}