@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;700&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: #222;
    height: 100vh;
    display: grid;
    place-items: center;
    font-family: Montserrat;
    color: #b3afbf;
}

.card {
    padding: 15px;
    width: 450px;
    background: #222;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.7);
    user-select: none;
}

.cover-photo {
    position: relative;
    background: url("bg.png");
    background-size: cover;
    height: 180px;
    border-radius: 5px 5px 0 0;
}

.profile {
    position: absolute;
    width: 180px;
    bottom: -60px;
    left: 15px;
    border-radius: 50%;
    border: 2px solid #222;
    background: #222;
    padding: 5px;
}

.profile-name {
    font-size: 20px;
    margin: 25px 0 0 120px;
    color: #fff;
}

.about {
    margin-top: 30px;
    line-height: 1.6;
}

.btn {
    margin: 30px 15px;
    background: #0b9592;
    padding: 10px 25px;
    border-radius: 3px;
    border: 1px solid #0b9592;
    font-weight: bold;
    font-family: Montserrat;
    cursor: pointer;
    color: #222;
    transition: 0.2s;
}

.btn:last-of-type {
    background: transparent;
    border-color: #0b9592;
    color: #0b9592;
}

.btn:hover {
    background: #08dcd8;
    color: #222;
}

.icons {
    width: 230px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.icons i {
    cursor: pointer;
    padding: 5px;
    font-size: 24px;
    transition: 0.2s;
}

.icons i:hover {
    color: #0b9592;
}

@media (max-width:550px) {
	.icons i {
        font-size: 24px;
	}
	.card {
        width: 350px;
	}
	.btn{
		margin: 15px 5px;
	}
	.profile{
	    position: unset;
	    margin: 30px auto;
	}
	.profile-name{
		font-size: 20px;
    	margin: 40px 0 0 auto;
	}
}
.icon-link{
	color: #b3afbf
}