@import url("https://fonts.googleapis.com/css2?family=Rubik:wght@400;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #A0C6E6;
    background-image: linear-gradient(62deg, #A0C6E6 0%, #A0C6E6 100%);
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Rubik", sans-serif;
}

.wrapper {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset,
        rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
        rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.grey {
    color: #999999;
	font-size: 12px;
}

.profile-top {
    height: 250px;
    width: 500px;
    background-image: url("./background.jpg");
    background-position: center;
    background-size: center;
    position: relative;
}

.profile-image {
    background-image: url("./logo.png");
    background-position: center;
	background-repeat: no-repeat;
    width: 400px;
    height: 150px;
    overflow: hidden;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
}

.profile-bottom {
    margin-top: 25px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-infos {
    display: flex;
    align-items: center;
    font-size: 28px;
    margin-bottom: 5px;
}

.name {
    font-weight: 700;
    margin-right: 15px;
}

.email {
    font-size: 20px;
    margin-bottom: 25px;
}

.ville {
    font-size: 18px;
	margin-top: 15px;
    margin-bottom: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ville ion-icon {
    margin-right: 5px;
    color: #388eff;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}

.stat-item:not(:last-child) {
    border-right: 1px solid black;
}

.stat {
    font-size: 20px;
    font-weight: 700;
}
