@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@700&family=Kumbh+Sans:wght@100..900&family=Lexend+Deca&family=Outfit&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');


*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body{
    font-family: "Kumbh Sans", sans-serif;
    font-size: 1.125rem;
}

.main{
   display: flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100vh;
   overflow: hidden;
   background-color: hsl(185, 75%, 39%);
}

.top-left-img{
    transform:rotate(100deg);
    margin-left: -60em;
    margin-top: -40em;
}

.bottom-right-img{
  transform: rotate(400deg);
  margin-right: -50em;  
  margin-top: 60em;
}

.content-holder{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; 
    background-color: white;   
    border-radius: 16px 16px 16px 16px;
    padding-bottom: 2em;
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

.card-image{
    border-radius: 16px 16px 0px 0px ;
    width: 100%;
}



.avatar-image{
    border-radius: 100px;
    margin-top: -2em;
    
}

.name-age{
    margin-top: 1em;
}

h1{
    font-size: x-large;
    color: hsl(229, 23%, 23%);
    font-weight: 700;
}

.age{
    font-size: x-large;
    font-weight: 300;
    color: hsl(0, 0%, 59%);
    margin-left: .3em;
}

h3{
    font-weight: 400;
    color: hsl(0, 0%, 59%);
    font-size: medium;
    margin-top: .5em;
    margin-bottom: 2em;
}

.breaking-line{
    width: 100%;
    margin-bottom: 1.5em;
}

hr{
    opacity: 0.25;
}

.stats{
    display: flex;
    gap:50px;
    padding-left: 2em;
    padding-right: 2em;
}

.followers{
    text-align: center;
}

.flwrs{
    display: flex;
    margin-top: .3em;
    font-size: small;
    letter-spacing: 1.2px;  
    color: hsl(0, 0%, 59%);
}

.Ate{
    font-size: x-large;
    color: hsl(229, 23%, 23%);
    font-weight: 700;
}

.likes{
    text-align: center;
}

.thsnd{
    font-size: x-large;
    color: hsl(229, 23%, 23%);
    font-weight: 700;
    margin-right: -1em;
}

.lkes{
    display: flex;
    margin-top: .3em;
    margin-left: 2em;
    font-size: small;
    letter-spacing: 1.2px;  
    color: hsl(0, 0%, 59%);
}

.Photos{
    text-align: center;
}

.fourk{
    font-size: x-large;
    color: hsl(229, 23%, 23%);
    font-weight: 700;
    margin-right: -1em;
}

.phts{
    display: flex;
    margin-top: .3em;
    margin-left: 2em;
    font-size: small;
    letter-spacing: 1.2px;  
    color: hsl(0, 0%, 59%); 
}

@media (min-width:300px) and (max-width:500px){
    .content-holder{
        margin-left: 2em;
        transform: scale(0.6);
        transition: transform 0.3s ease-in-out;
    }
}