@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root{
    --ff: "Montserrat",sans-serif;
}

*{
    padding: 0;
    margin: 0;
}

div.backG{
    height: 1100px;
    width: 100%;
    background: linear-gradient(-45deg, rgb(51, 127, 208), rgb(22, 48, 178), rgb(86, 6, 197),rgb(132, 3, 155));
    background-size: 400% 400%;
    animation: bg 15s ease infinite;
}

@keyframes bg{
    0%{
        background-position: 0 50%;
    }

    50%{
        background-position: 100% 50%;
    }

    100%{
        background-position: 0 50%;
    }
}

h1{
    color: #FFFFFF;
    font-family: var(--ff);
    text-align: center;
    font-size: 80px;
    padding: 20px;
}

h1.header{
    font-weight: 300;
}

span.header2{
    font-weight: bold;
}

div.mesh{
    width: 100%;
    height: 200px;
    background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
    margin-bottom: 25px;
}

div.descr{
    text-align: center;
    font-family: var(--ff);
    color: #FFFFFF;
    font-size: 30px;
    padding: 10px 40px;
    line-height: 50px;
    margin: 100px 0;

}

div.verse{
    width: 100%;
    height: 120px;
    text-align: center;
    border-radius: 200px;
    background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
    font-family: var(--ff);
    color: #FFFFFF;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 50px;
    font-size: 20px;
    padding: 40px 0;
}

div.pics{
    width: 100%;
    height: 300px;
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

div.picture{
    margin-top: 0;
    width: 250px;
    height: 250px;
    border: 3px solid black;
}

img{
    width: 250px;
    height: 250px;
}

div.back i{
    font-size: 40px;
}

div.back i:hover{
    color: #3c3b3b;
}


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) {

    div.backG{
        height: 1800px;
        width: 100%;
        background: linear-gradient(-45deg, rgb(51, 127, 208), rgb(22, 48, 178), rgb(86, 6, 197),rgb(132, 3, 155));
        background-size: 400% 400%;
        animation: bg 15s ease infinite;
    }
    
    @keyframes bg{
        0%{
            background-position: 0 50%;
        }
    
        50%{
            background-position: 100% 50%;
        }
    
        100%{
            background-position: 0 50%;
        }
    }
    
    h1{
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
        font-size: 40px;
        padding: 20px;
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.mesh{
        width: 100%;
        height: 150px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        margin-bottom: 25px;
    }
    
    div.descr{
        text-align: center;
        font-family: var(--ff);
        color: #FFFFFF;
        font-size: 23px;
        padding: 10px 40px;
        line-height: 50px;
        margin: 30px 0;
    
    }
    
    div.verse{
        width: 100%;
        height: 120px;
        text-align: center;
        border-radius: 200px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        font-family: var(--ff);
        color: #FFFFFF;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 25px;
        font-size: 12px;
        padding: 20px 0;
    }
    
    div.pics{
        width: 100%;
        height: 600px;
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }
    
    div.picture{
        width: 250px;
        height: 250px;
        border: 3px solid black;
        margin-top: 40px;
    }
    
    img{
        width: 100%;
        height: 100%;
    }

    div.back i{
        font-size: 30px;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
}

@media (min-width:768px) and (max-width:1024px) {

    div.backG{
        height: 1500px;
        width: 100%;
        background: linear-gradient(-45deg, rgb(51, 127, 208), rgb(22, 48, 178), rgb(86, 6, 197),rgb(132, 3, 155));
        background-size: 400% 400%;
        animation: bg 15s ease infinite;
    }
    
    @keyframes bg{
        0%{
            background-position: 0 50%;
        }
    
        50%{
            background-position: 100% 50%;
        }
    
        100%{
            background-position: 0 50%;
        }
    }
    
    h1{
        color: #FFFFFF;
        font-family: var(--ff);
        text-align: center;
        font-size: 80px;
        padding: 20px;
    }
    
    h1.header{
        font-weight: 300;
    }
    
    span.header2{
        font-weight: bold;
    }
    
    div.mesh{
        width: 100%;
        height: 200px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        margin-bottom: 25px;
    }
    
    div.descr{
        text-align: center;
        font-family: var(--ff);
        color: #FFFFFF;
        font-size: 30px;
        padding: 10px 40px;
        line-height: 50px;
        margin: 100px 0;
    
    }
    
    div.verse{
        width: 100%;
        height: 120px;
        text-align: center;
        border-radius: 200px;
        background: linear-gradient(rgba(0,0,0,0.75),rgba(0,0,0,0.75));
        font-family: var(--ff);
        color: #FFFFFF;
        font-weight: 600;
        display: flex;
        justify-content: center;
        align-items: center;
        line-height: 50px;
        font-size: 16px;
        padding: 40px 0;
    }
    
    div.pics{
        width: 100%;
        height: 300px;
        margin-top: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
    }
    
    div.picture{
        width: 250px;
        height: 250px;
        border: 5px solid black;
        margin-top: 40px;
    }
    
    img{
        width: 100%;
        height: 100%;
    }
    
    div.back i:hover{
        color: #3c3b3b;
    }
    
}