* {
    box-sizing: border-box;
    text-align: center;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: rgb(0, 17, 0) url('img/bg.jpg') no-repeat center center/cover;
    height: 100vh;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: -1;
}

h1 {
    font-size: 40px;
    margin-bottom: 0; 
}

h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.msg {
    margin-top: 10px; 
}

.box {
    border: 1px solid #c7c6c6;
    padding: 8px 12px;
    font-size: 20px;
    margin: 8px;
    display: inline-block;
}

p {
    font-size: 20px;
}

.img {
    background-color: rgba(255, 255, 255, 0.5);
    width: 200px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.fa-microphone {
    color: black;
}

.container {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 10px;
    border-radius: 5px;
}

.container h2 {
    font-size: 40px;
}

.play-again {
    border-radius: 4px;
    padding: 8px 12px;
}


@media (max-width: 500px) {
    h1 {
        font-size: 26px;
    }
    h3 {
        font-size: 16px;
    }
    .container h2 {
        font-size: 26px;
    }
}