* {
    margin: 0px;
    padding: 0px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif
}

.background {
    height: 100vh;
    width: 100vw;
    background-image: url('Images/bg1.jpg');
    background-size: cover;
    transition: background-image 0.3s ease-in-out;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
}

#container {
    text-align: center;
    padding-top: 75px;
    padding: 50px;
    /* padding-bottom: 50px; */
    font-weight: bolder;
    font-size: 70px;
    background-color: #3D3D3D;
    height: 250px;
    width: 300px;
    border: ghostwhite;
    border-radius: 50px;
    opacity: 80%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 50px;
}

#timer {
    color: white;
    opacity: 100%;
    padding-bottom: 10px;
    font-size: 80px;
}

.buttons {
    display: flex;
    align-items: bottom;
    justify-content: center;
    gap: 30px;
}

.btn {
    border-radius: 4em;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #3D3D3D;
}

.btnimg {
    /* border-radius: 4em; */
    width: 45px;
    height: 45px;
    align-self: center;
}

.toggle {
    position: absolute;
    top: 50px;
    right: 50px;
    filter: invert(1);
    height: 40px;
    width: 60px;
    transition: transform 0.3s ease;
}

.music {
    display: flex;
    flex-direction: column;
    gap: 50px;
    position: absolute;
    bottom: 50px;
    right: 50px;

}

.m-img {
    border-radius: 100px;
    width: 45px;
    height: 45px;
}

.btnm {
    border-radius: 4em;
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color: #edf7e8;
}