.allcomptetitors {
    width: 90%;
    margin: 0 auto;
}
.ctn{
    margin: 0 auto;
    width: fit-content;
}

.competition h1 {
    text-align: center;
    color: rgb(253, 253, 253);
    text-decoration: underline;
    padding-top: 30px;
}

.competitors {
    display: inline-block;
}

.member {
    margin: 0 20px;
}

.member img {
    width: 270px;
    height: 360px;
}

.image {
    margin-left: 10px;
    position: relative;
    width: 270px;
    height: 360px;
    margin-bottom: 10px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    /* the picture need to be fix XD */
    /* Everybody looks fat */
    color: white;
    display: flex;
    font-family: 'Quicksand', sans-serif;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    backdrop-filter: blur(3px);
}

.overlay>* {
    transform: translateY(20px);
    transition: transform 0.25s;
}

.overlay:hover {
    opacity: 1;
}

.overlay:hover>* {
    transform: translateY(0);
}

.imageTitle {
    font-size: 1.5em;
    font-weight: bold;
}

.overlay p {
    text-align: center;
    margin: 5px;
    font-size: 1.5em;
    margin-top: 1.5em;
}

.category {
    font-size: 30px;
    margin: 20px;
    color: rgb(252, 192, 125);
    text-align: center;
}

.content {
    background-color: rgb(55, 129, 123);
    overflow: auto;
}
.webshowcase{
    width: 900px;
    margin: 30px auto;
}
@media screen and (max-width:1000px) {
    .allcomptetitors{
        width: 90%;
    }
    .imageTitle {
        font-size: 1.2em;
    }

    .overlay p {
        font-size: 1em;
    }
    
}
@media screen and (max-width:750px) {
    .allcomptetitors {
        width: 80%;
    }
    .member{
        width: 200px;
        height: 266.666px;
    }
    .member img {
        width: 200px;
        height: 266.666px;
    }

    .image {
        width: 200px;
        height: 266.666px;
    }
}
@media screen and (max-width:650px) {
    .allcomptetitors {
        width: 50%;
    }
    .competitors{
        width: 200px;
        margin: 0 auto;
    }
    .member img {
        width: 200px;
        height: 266.666px;
    }
    .member{
        margin: 0;
    }
    .image {
        width: 200px;
        height: 266.666px;
        margin: 0;
    }
}