body {
    margin: 0;
    background-image: url(./images/background.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}

.main-container {
    height: 100%;
    width: 100%;
}


.flex-cont {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content:center;
    gap: 15px 10px;
}

.flex-item {
    flex-basis: 33%;
}

h1{
    margin-bottom: 20px;
}

.title {
    font-size: 8rem;
    color: #fb7e7e;
    text-align: center;
    text-shadow: 15px 11px 9px black;
    opacity: 0.8;
}

@media screen and (max-width: 670px) {
    .title {
        font-size: 6.5rem;
    }
}

@media screen and (max-width: 440px) {
    .title {
        font-size: 4.5rem;
    }
}

.box {
    height: 100px;
    width: 300px;
    margin-top:5px;
    margin-bottom: 5px;
    padding-top: 9px;
    padding-bottom: 15px;
    border: 3px solid black;
    background-color: rgb(36, 33, 33, 0.3)
}

.box:hover {
    box-shadow: 10px 5px 10px black;
}

@media screen and (max-width: 440px) {
    .box:hover, .box:active {
        box-shadow: 1px 10px 5rem 20px #fb7e7e;
    }
}

audio {
    width: 280px;
    padding: 5px;
}

.audio-clip {
    margin-top:10px;   
}

.names {
    opacity: 0.7;
    display: inline;
    padding: 1px 10px;
    text-align: center;
    font-size: 22px;
    color: white;
    font-weight: 900;
    text-shadow: 9px 3px 2px black;
}

.about {
    margin: auto;
    width: 60%;
    background-color: whitesmoke;
    opacity: 0.69;
    border: 3px solid black;
    box-shadow: 13px 12px 10px #fb7e7e;

}

@media screen and (max-width: 440px) {
    .about {
        width: 75%;
    }
}

.about-title {
    text-align: center;
    padding-top: 20px;
    margin-bottom: -10;
    margin-top: 0px;
    letter-spacing: 3px;
}

.about-desc {
    color: black;
    text-align: justify;
    font-weight:900;
    letter-spacing: 1px;
    padding: 10px;
}

.btnDiv {
    text-align: center;
    padding-bottom: 10px;
}

button {
    padding: 15px 30px;
    font-weight: 600;
    text-decoration: none;
}

button:hover {
    background-color: rgba(195, 190, 190, 0.921);
}

#more {
    display: none;
}

.copyright {
    width:250px;
    height: 250px;
    float: right;
    position: relative;

}

.copy-text {
    position: absolute;
    top: 110;
    left: 38;
    color: white;
    z-index: 2;
}