@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
:root{
    --bg-color:#e3edf7;
    --gradient-white-bg:linear-gradient(0deg,#fff 0%,#edf4fa 51%,#e5eef7 100%);
    --gradient-color-bg:linear-gradient(180deg,rgba(247,1,120,1)0%,
                                                rgba(160,8,156,1)51%,
                                                rgba(99,13,178,1)100%);
    --main-color:#e6006d;
    --font-color:#90979f;
    --hover-box-shadow:rgba(0,0,0,0.19)0px 10px 20px,
                       rgba(0,0,0,0.23)0px 6px 6px;     
    --gradient-white-bg2:linear-gradient(98deg,#e5eef7 0%,#fff 100%);                                                          
}

*{  list-style: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    }

 body{  
 
  min-height: 100vh;
  background: url('bruno-cervera-unsplash.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Roboto', sans-serif;
  }
  
  .flex-container {
    font-family: 'Roboto', sans-serif;
    margin-top: 1rem;
  }
h1{
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  font-size: 3rem;
  color: var(--main-color);
  text-align: center;
}

h2{
  display: flex;
  justify-content: center;
  align-items:center;
  padding: 70px 0;
  font-size: 2.25rem;
  color: var(--main-color);
  
}

  .address{
    margin-left: 60px;
    font-size: 1.75rem;
    color: #111;  
    justify-content: start;
    display: flex;
    align-items: ltr;
  }
  .main{
    width: 80vw;
    color:#0c1114;
    line-height: 1.3;
    margin:auto;
    justify-content: center;
    align-items: justify;
    flex-wrap: wrap;
    font-size: 1.2rem ;
    font-weight: 600;
  }

  footer {
    background-color:rgba (0,0,0, .1);
}
footerContainer{
    list-style:none;
    width: 100%;
    
}
.socialIcons{
    display: flex;
    justify-content: center;
}
.socialIcons a{
    text-decoration: none;
    padding: 10px;
    background-color: #ddd;
    margin:10px;
    border-radius: 50px;
}
.socialIcons a i{
    font-size: 2em;
    color: black;
    opacity:0.9;
}

.socialIcons a:hover{
    background-color: #111;
    transition: 0.5s;
}

.socialIcons a:hover i{
    color: white;
    transition: 0.5s;
}

.footerNav{
    margin: 30px 0;
}
.footerNav ul{
    display: flex;
    justify-content: center;
}
.footerNav ul li a{
    color: black;
    margin:20px;
    text-decoration: none;
    font-size: 1.3em;
    opacity:0.7;
    transition: 0.5s;
}
.footerNav ul li a:hover{
     opacity:1;
}
.footerBottom{
    background-color: #000;
    padding:20px;
    text-align: center;
}
.footerBottom p{
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight:400;
    margin: 0px 5px;
}

@media (max-width: 700px){
    .footerNav ul{
        flex-direction: column;
    }
    .footerNav ul li{
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}


 
    
   

    