/* ------------fonts------------- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

/* -----------common styles---------------- */
body{
    font-family: 'Poppins', sans-serif;
}
/* --------top styles----------- */
.flexible-container{
    width: 1440px;
    height: 677px;
    background-color: #2D25A0;
    display: flex;
}
.half-width h1{
    width: 485px;
    height: 230px;
    color: white;
    font-size: 64px;
    margin-top: 207px;
    margin-left: 156px;
}
.button-item{
    font-size: 16px;
    color: #FFFFFF;
    margin-top: 464px;
    margin-left: 156px;
    text-decoration: none;
    background-color: #E02C6D;
    padding: 10px 24px;
}
.button-item:hover{
    color: black;
    background-color: skyblue;
    font-weight: 700;
}
.half-width img{
    width: 556px;
    height: 438px;
    margin-top: 153px;
    margin-bottom: 86px;
    margin-right: 141px;
    margin-left: 102px;
}

/* --------player styles----------- */
.players{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-row-gap: 27px;
    margin-left: 180px;
    margin-right: 210px;
    margin-top: 70px;
}
.player{
    width: 300px;
    height: 426px;
    margin: 0 10px;
    border: 15px solid white;
    box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.15);
}
.player img{
    width: 300px;
    height: 256px;
}
hr{
    border: 3px solid gray;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* ---------------Bonus Part------------------- */
.copa-america{
    text-align: center;
    font-size: 40px;
}
.copa-album {
    display: flex;
    flex-wrap: wrap;
    margin-left: 140px;
}
.photo-frame {
    width: 300px;
    height: 200px;
    border: 3px solid gray;
    border-radius: 15px;
    position: relative;
    margin: 15px;
    overflow: hidden;
}
.photo img {
    width: 100%;
    border-radius: 10px;
}

.photo-detail {
    display: none;
    position: absolute;
    width: 300px;
    top: 0;
}

.photo-detail h3 {
    background-color: black;
    color: white;
    text-align: center;
}

.photo-detail p {
    color: black;
}

.photo-frame:hover .photo-detail {
    display: block;
    background-color: rgba(173, 216, 230, 0.479);
}

.photo-frame:hover .photo {
    transform: scale(1.5);
    transition: transform 2s ease-in-out;
}

/* --------------footer----------------- */
.footer-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-item img{
    width: 484px;
    height: 110px;
    margin-top: 100px;
}
.social-icon{
    text-align: center;
}
.social-icon .icon{
    margin-right: 14px;
}
.footer p{
    text-align: center;
}

/* ---------------medis queries--------------- */

/* ----------------mobile device------------------ */

@media only screen and (max-width:688px) {
    .flexible-container{
        display: flex;
        justify-content: space-between;
    }
    .half-width{
        margin: 0;
        grid-template-columns: repeat(1, 1fr);
    }
    .players, .copa-album{
        grid-template-columns: repeat(1, 1fr);
        margin: 0;
    }
    .copa-america{
        font-size: 30px;
    }
    .footer-item img{
        width: 60%;
        margin-left: 30px;
    }
}    