* {
    font-family: Arial, Helvetica, sans-serif;
		box-sizing: border-box;
}

body {
    background: #f3f3f3;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.card {
    min-width: 320px;
    max-width: 360px;
    width: 100%;
    background: #ffffff;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 40px auto;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

h1 {
    margin: 5px 0 0 0;
    color: rgb(56, 72, 171);
    font-size: 32px;
    font-weight: 400;
}

.subtitle {
    color: #808080;
    margin: 10px 0 20px 0;
    font-size: 18px;
}

hr {
    border: none;
    margin: 10px 0 25px;
    height: 1px;
    background: #e2e2e2;
}

.portfolio-btn {
    background: rgb(0, 137, 121);
    color: white;
    border: none;
    height: 50px;
    width: 90%;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;

		a {
			width: 100%;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			margin: 0;
		}
}

.portfolio-btn:hover {
    opacity: 0.9;
}

.portfolio-btn-link {
    color: white;
    text-decoration: none;
}

.icons {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    font-size: 22px;
    color: rgb(95, 95, 95);

		a {
			display: flex;
			justify-content: center;
			align-items: center;
		}
}

.icon {
    cursor: pointer;
}

a {
    display: inline-block;
    margin: 0 18px;
}

i {
    color: rgb(95, 95, 95);
    font-weight: 400;
}

i {
    font-size: 26px;
}

i:hover,
a:hover {
    opacity: 0.9;
}
