diff --git a/public_html/js/sound.js b/public_html/js/sound.js
index 76ae72b..0d69d49 100644
--- a/public_html/js/sound.js
+++ b/public_html/js/sound.js
@@ -2,6 +2,7 @@ class Sound{
constructor(url){
this.sound = new Audio(url);
this.sound.type = "audio/mp3";
+ this.sound.volume = 0.2;
}
play(){