@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root{
    --White: hsl(0, 0%, 100%);
    --LightPink: hsl(275, 100%, 97%);
    --GrayishPurple: hsl(292, 16%, 49%);
    --DarkPurple:hsl(292, 42%, 14%);
    --f400: 400;
    --f600: 600;
    --f800: 800;
}
body {
    font-family: "Figtree", serif;
    background-color: var(--LightPink);
    background-image: url(./assets/images/background-pattern-desktop.svg);
    background-size: cover;
    background-repeat: no-repeat;
    height: 37vh;
    font-size: 16px;
}

.content{
    position: absolute;
    background-color: var(--White);
    max-width: 500px;
    min-width: 400px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 20px;
    border-radius: 2%;
}
.content .container{
    margin: 15px;
}
.content .header h1{
    font-weight: var(--f800);
    font-size: 45px;
    color: var(--DarkPurple);
}
.content .container .ele p{
    font-weight: var(--f800);
    margin-bottom: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.content .container .ele p img{
    position: relative;
    bottom: 5px;
    width: 25px;
}
.content .container .ele span{
    font-weight: var(--f400);
    color: var(--GrayishPurple);
    font-size: 15px;
}
.content .container .ele p:hover{
    color: rgb(213 97 255);
    cursor: pointer;
}
.content .container .ele div:not(:last-of-type)::after {
    content: "";
    display: block;
    border-bottom: 2px solid var(--LightPink);
    margin-top: 20px;
}
.content .container .ele span:not(:first-of-type){
    display: none;
}
@media screen and (max-width: 412px) {
   .content{
    min-width: 350px;
   }
   .content .container .header h1{
    font-size: 35px;
   }
   .content .container .header h1 img{
    width: 30px;
    vertical-align:baseline;
   }
}