/* # Front-end Style Guide

## Layout

The designs were created to the following widths:

- Mobile: 375px
- Desktop: 1440px

## Colors

### Primary

Dark cyan: hsl(185, 75%, 39%)
Very dark desaturated blue: hsl(229, 23%, 23%)
Dark grayish blue: hsl(227, 10%, 46%)

### Neutral

Dark gray: hsl(0, 0%, 59%)

## Typography

### Body Copy

- Font size (name and stats): 18px

### Font

- Family: [Kumbh Sans](https://fonts.google.com/specimen/Kumbh+Sans)
- Weights: 400, 700 */

/* Universal */
@import url('https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap');

*, *::after, *::before{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Colours and font*/


html{
/* ### Primary */

    --Darkcyan: hsl(185, 75%, 39%);
    --Verydarkdesaturatedblue: hsl(229, 23%, 23%);
    --Darkgrayishblue: hsl(227, 10%, 46%);

/* ### Neutral */

    --Darkgray: hsl(0, 0%, 59%);

    font-size: 16px;
    font-family: "Kumbh Sans" ;
}

/* Fixing body */

body{
    display: flex;
    width: 100vw;
    height: 100vh;
    background-color: var(--Darkcyan);
  
}

/* Making the background */
.bgpattern{
    position: absolute;
}

.bgpattern img:nth-child(1){
    position: fixed;
    float: left;
    right: 50%;
    top: -800px;
    width: 1440px;
}

.bgpattern img:nth-child(2){
    position: fixed;
    float: right;
    left: 50%;
    bottom: -800px;
    width: 1440px;
}

/* Making the card */

.container{
    position: relative;
    background-color: white;
    margin: auto;
    width: 375px;
    height: 440px;
    box-shadow: 1px 10px 130px 0px rgba(0, 0, 0, .5);
    border-radius: 1rem;
}

/* Positioning inside card */

.stats{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    border-top: 1px rgba(25, 25, 25, .25) solid;
    padding: auto 20px;
}

.info span{
display: inline-block;
font-size: 1.33rem;
}

p{
    text-align: center;
    color:var(--Darkgray);
}

.info{
    height: 55%;
}

.pp{
    border-radius: 50%;
    width: fit-content;
    display: flex;
    margin: 27% auto 0;
    z-index: 99;
}

#victor{
    border-radius: 50%;
    z-index: 2;
    background-color: white;
    padding: .25rem;
    margin: auto;
}

/* Bottom stats */
h2{
    margin:1.5rem auto;
    text-align: center;
}

h2 span{
    font-size: .8rem;
    letter-spacing: .1rem;
    font-weight: 400;
    padding: .5rem;
    display: block;
    color: var(--Darkgray);
}

/* bg pattern card */
#bg{
    position: absolute;
    z-index: 0;
    top: 0;
    width: 100%;
    height: 35%;
    border-radius: 1rem 1rem 0 0;
}

