@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --ff: "Montserrat",sans-serif;
    --p1: "../images/1.JPG";
    --p2: "../images/2.JPG";
    --p3: "../images/3.JPG";
}

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #2A353C;
}

div.body{
    width: 100%;
    height: 1400px;
}

div.banner{
    width:100%;
    height: 250px;
    background-image: url(../images/mens\ header.png);
    background-repeat: no-repeat;
    background-position: center;

}

h1.header{
    text-align: center;
    font-family: var(--ff);
    color: #BF9F4D;
    font-size: 80px;
    font-weight: 300;
}

span{
    font-weight: bold;
}

div.back i{
    font-size: 40px;
    margin-bottom: 40px;
}

div.back i:hover{
    color: #3c3b3b;
}

div.info p{
    padding: 0;
    color: #fff;
    font-size: 30px;
    font-family: var(--ff);
    text-align: center;
    line-height: 70px;
    margin: 80px 0;
}

div.pics{
    padding: 0;
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: row;
}

div.pictures{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
}

div.pictures{
    position: relative;
    width: 290px;
    height: 260px;
    border-radius: 10px;
    background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
    animation: animate 4s linear infinite;
}

div.pictures::before{
    z-index: -1;
    content: '';
    position: absolute;
    width: 290px;
    height: 260px;
    background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
    animation: animate 4s linear infinite;
    animation-delay: -1s;
    border-radius: 10px;
}

img{

    width: 280px;
    height: 250px;
    border-radius: 10px;
    inset: 8px;
    border: 8px solid #2A353C;
}


@property --a{
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

@keyframes animate{
    0%{
        --a: 0deg;
    }
    100%{
        --a: 360deg;
    }
}

div.verse{
    align-content: center;
    width: 100%;
    height: 150px;
    background: linear-gradient(rgb(0,0,0,0.7),rgb(0,0,0,0.7));
    margin: 90px 0;
    border-radius: 9999px;
    text-align: center;
    color: #BF9F4D;
    font-size: 30px;
    padding: 20px 0;
    font-weight: 600;
    font-family: var(--ff);
}




footer{
    background-color: #292727;
    padding-top: 25px;
}

footer div{
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: center;
}

.footerpages{
    text-decoration: none;
    color: #FFFFFF;
    font-family: var(--ff);
    font-size: 20px;
}

div.links ul li{
    list-style: none;
    display: inline-block;
    margin: 0px 30px;
    
}

div.links ul{
    text-align: center;
}

h2{
    color: #FFFFFF;
    font-family: var(--ff);
    font-weight: 500;
}

.links ul li a:hover{
    color: #aaa;
}

.socials li{
    list-style: none;
    display: inline-block;
    margin: 25px 43px;
}

i{
    color: #FFFFFF;
    font-size: 50px;
}

div.socials li a i{
    text-align: center;
}
div.socials li a i:hover{
    color: #aaa;
}
div.bottom{
    background-color: #3c3b3b;
    margin-top: 20px;
}

.bottom p{
    color: #FFFFFF;
}

@media (max-width:1024px) {

    footer{
        background-color: #292727;
        padding-top: 25px;
    }
    
    footer div{
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: start;
    }
    
    .footerpages{
        text-decoration: none;
        color: #FFFFFF;
        font-family: var(--ff);
        font-size: 20px;
    }
    
    div.links ul li{
        list-style: none;
        display: flex;
        flex-direction: column;
        margin: 10px 30px;
        
    }
    
    div.links ul{
        text-align: start;
    }
    
    h2{
        color: #FFFFFF;
        font-family: var(--ff);
        font-weight: 700;
        margin: 0 30px;
        font-size: 20px;
    }
    
    .links ul li a:hover{
        color: #aaa;
    }
    
    .socials li{
        list-style: none;
        display: inline-block;
        margin: 25px 20px;
    }
    
    i{
        color: #FFFFFF;
        font-size: 20px;
    }
    
    div.socials li a i{
        text-align: center;
    }
    div.socials li a i:hover{
        color: #aaa;
    }
    div.bottom{
        background-color: #3c3b3b;
        margin-top: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .bottom p{
        color: #FFFFFF;
        font-size: 15px;

    }
    
}

@media (max-width:540px) {

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    div.body{
        width: 100%;
        height: 1600px;
    }
    
    div.banner{
        width:100%;
        height: 200px;
        background-image: url(../images/mens\ header.png);
        background-repeat: no-repeat;
        background-position: center;
    
    }
    
    h1.header{
        text-align: center;
        font-family: var(--ff);
        color: #BF9F4D;
        font-size: 40px;
        font-weight: 300;
    }
    
    span{
        font-weight: bold;
    }
    
    div.back i{
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
    div.info p{
        padding: 0 20px;
        color: #fff;
        font-size: 20px;
        font-family: var(--ff);
        text-align: center;
        line-height: 50px;
        margin: 50px 0;
    }
    
    div.pics{
        width: 100%;
        height: 600px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }
    
    div.pictures{
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40px;
    }
    
    div.pictures{
        position: relative;
        width: 200px;
        height: 160px;
        border-radius: 10px;
        background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
        animation: animate 4s linear infinite;
    }
    
    div.pictures::before{
        z-index: -1;
        content: '';
        position: absolute;
        width: 200px;
        height: 160px;
        background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
        animation: animate 4s linear infinite;
        animation-delay: -1s;
        border-radius: 10px;
    }
    
    img{
    
        width: 190px;
        height: 150px;
        border-radius: 10px;
        inset: 8px;
        border: 8px solid #2A353C;
    }
    
    
    @property --a{
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
    }
    
    @keyframes animate{
        0%{
            --a: 0deg;
        }
        100%{
            --a: 360deg;
        }
    }
    
    div.verse{
        width: 100%;
        height: 150px;
        background: linear-gradient(rgb(0,0,0,0.7),rgb(0,0,0,0.7));
        margin: 30px 0;
        border-radius: 9999px;
        text-align: center;
        color: #BF9F4D;
        font-size: 14px;
        padding: 20px 10px;
        font-weight: 600;
        font-family: var(--ff);
    }
    
}

@media (min-width:767px) and (max-width:1024px) {

    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }

    div.body{
        width: 100%;
        height: 2500px;
    }
    
    div.banner{
        width:100%;
        height: 250px;
        background-image: url(../images/mens\ header.png);
        background-repeat: no-repeat;
        background-position: center;
    
    }
    
    h1.header{
        text-align: center;
        font-family: var(--ff);
        color: #BF9F4D;
        font-size: 80px;
        font-weight: 300;
    }
    
    span{
        font-weight: bold;
    }
    
    div.back i{
        margin-bottom: 40px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
    div.info p{
        color: #fff;
        font-size: 30px;
        font-family: var(--ff);
        text-align: center;
        line-height: 70px;
        margin: 80px 0;
    }
    
    div.pics{
        width: 100%;
        height: 1200px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-direction: column;
    }
    
    div.pictures{
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    div.pictures{
        position: relative;
        width: 290px;
        height: 260px;
        border-radius: 10px;
        background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
        animation: animate 4s linear infinite;
    }
    
    div.pictures::before{
        z-index: -1;
        content: '';
        position: absolute;
        width: 290px;
        height: 260px;
        background: repeating-conic-gradient(from var(--a), #BF9F4D 0%, #BF9F4D 5%, transparent 5%, transparent 40%, #BF9F4D 50%);
        animation: animate 4s linear infinite;
        animation-delay: -1s;
        border-radius: 10px;
    }
    
    img{
    
        width: 280px;
        height: 250px;
        border-radius: 10px;
        inset: 8px;
        border: 8px solid #2A353C;
    }
    
    
    @property --a{
        syntax: '<angle>';
        inherits: false;
        initial-value: 0deg;
    }
    
    @keyframes animate{
        0%{
            --a: 0deg;
        }
        100%{
            --a: 360deg;
        }
    }
    
    div.verse{
        width: 100%;
        height: 200px;
        background: linear-gradient(rgb(0,0,0,0.7),rgb(0,0,0,0.7));
        margin: 60px 0;
        border-radius: 9999px;
        text-align: center;
        color: #BF9F4D;
        font-size: 30px;
        padding: 20px 10px;
        font-weight: 600;
        font-family: var(--ff);
    }
    
}