@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*:before,
*:after {
  margin:0;
  padding:0;
  box-sizing: border-box;
}



/* this relaly fixed my top margin issue?  */
.container {
  max-width: 960px;
  width: 100%;
  padding: 20px;
}






.wrapper{

    display:grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 2px;
    row-gap: 16px;
    justify-content: center;
    margin-top: 110px;
   
  }


  

/* Some basic CSS overrides */
/* added a gap property */

 




 

body {
  max-width: 100vw;
  min-height: 100vh;
  line-height: 1.5;
  font-family: "Be Vietnam Pro", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #080e07;
  gap:1.9rem;
  margin:auto;
   
  
  }

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

p{
  font-weight: 600;
  color:#43b431;
}

.ig-profile{
  text-decoration: none;
  transition: 3s;
}

/* End basic CSS override */
/* starting code for entire box */
.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  width: 90%;
  max-width: 300px;
  background-color: #1b2028;
  border-radius: 16px;
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
  text-align: center;
  color: #f1f3f3;
  background-image: linear-gradient(135deg, rgba(117, 46, 124, 0.35), rgba(115, 74, 88, 0.1) 15%, #1b2028 20%, #1b2028 100%);
  
  
}


.profile:after {
  content: "";
  display: block;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  z-index: -1;
  position: absolute;
  border-radius: 16px;
  background-image: linear-gradient(135deg, #0cb63f, #734a58 20%, #1b2028 30%, #2c333e 100%);
}




.profile-image {
  border-radius: 50%;
  overflow: hidden;
  width: 175px;
  height: 175px;
  position: relative;
}
.profile-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.profile-username {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.profile-user-handle {
  color: #7d8396;
}

.profile-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-actions > * {
  margin: 0 0.25rem;
}

.btn1 {
  border: 0;
  background-color: transparent;
  padding: 0;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: 0.15s ease;
}
.btn--primary {
  border-radius: 99em;
  background-color: #3772ff;
  background-image: linear-gradient(135deg, #5587ff, #3772ff);
  color: #fff;
  padding: 0 1.375em;
}
.btn--primary:hover, .btn--primary:focus {
  background-size: 150%;

  /* I added this -Royan */
  transform: scale(1.1);
  transition: ease-in-out 0.4s;
  
}


.btn--icon {
  height: 46px;
  width: 46px;
  border-radius: 50%;
  border: 3px solid #343945;
  color: #7d8396;

  
}
.btn--icon i {
  font-size: 1.25em;
}


.btn--icon:hover, .btn--icon:focus {
  border-color: #7d8396;
}

.profile-links {
  margin-top: 3.5rem;
}

.link {
  text-decoration: none;
  color: #7d8396;
  margin-left: 0.375rem;
  margin-right: 0.375rem;
}
.link i {
  font-size: 1.25em;
}



/* SINGLE PROFILE ADJUSTMENTS - Mild */
.freddy{
  font-size: 18px;
}

.spencer{
  font-size: 18px;
}


footer{
  display:flex;
  justify-content: center;
  margin-top: 26px;
  color:#888383;
  font-family: "Be Vietnam Pro", sans-serif;
  margin-bottom: 30px;
  font-size: 12px;
}

/* secondary container2 */


 /* body, .container{
  max-width: 960px auto;
 } */

/* Media QUery added for Responsive Mobile Phones */

 

@media (max-width: 1366px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
  }
}
 

@media (max-width: 1024px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items: center;
  }
} 



@media (max-width: 912px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
} 

@media (max-width: 450px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
}



/* @media (min-width: 820px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
} */


 

/* @media (min-width: 320px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
} */

/* @media (min-width: 768px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }
} */

 

 


/* @media (min-width: 360px) {
  .wrapper{
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
} */




