@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500;700&display=swap');

:root {
    --main-color:#fea44c;
    --black:#13131a;
    --bg:#010103;
    --border: .2rem solid rgba(0, 0, 0, 0);
    --text: #636363;

}





* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}






.logo {
    filter: drop-shadow(1px 1px 2px rgb(0, 0, 0));
    padding-left: 30px;
    padding-top: 10px;

}



header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px 0 20px;
    
    top: 0; left: 0; right: 0;
    z-index: 1000;
}




.container {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 8%;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
}

.gallery img{
    width: 100%;
}

h1 {

    padding-top: 80px;
    text-align: center;
    color: var(--main-color);
}


footer {
    position: relative;
    width: 100%;
    margin-top: 100px;
    background: rgb(0, 0, 0);
    min-height: 100px;
    padding: 20px 50px;
    display: inline-block;
    justify-content: center;
    align-items: center;    
}

footer .social-icons {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    flex-wrap: wrap;
}

footer .social-icons li {
    list-style: none;
}

footer .social-icons li a {
    font-size: 1.2em;
    color: #fff;
    margin: 0 10px;
    display: inline-block;
    transition: 0.5s;
}


footer .social-icons li a:hover {
    transform: translateY(-10px);
}

footer p {
    color: #fff;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

footer span {
    color: #fff;
    font-size: 1.3em;
    
}