* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family:'Segoe UI', Arial, sans-serif;
    background: #ececec;
	color: #333333;
    line-height: 1.5;
    padding: 40px 15px;
}


.main {
    width: 100%;
    max-width: 720px;
    margin: auto;
}
.container {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    text-align: center;
}


.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.profile h1 {
    margin-top: 15px;
    font-size: 28px;
}
.profile h2 {
    margin-top: 10px;
    font-size: 15px;
	color: #00b0f0;
}
.profile p {
    color: #777777;
    margin-top: 30px;
    font-size: 15px;
}
.profile .text {
    color: #757575;
    margin-top: 5px;
    font-size: 14px;
}


.social-container {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: 14px;
    background: #000000;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
	text-decoration: none;
    transition: 0.25s;
}
.social i {
    font-size: 18px;
}

.social span {
    color: #00b0f0;
}
.social:hover {
    background: #333333;
    transform: translateY(-2px);
}


footer {
    margin-top: 65px;
    text-align: center;
    font-size: 13px;
    color: #777777;
}
footer a {
    color: #777777;
	text-decoration: none;
}
footer p {
    font-size: 12px;
}
footer .footer-text {
    font-size: 9px;
}
footer .footer-home {
	margin-top: 8px;
    font-size: 8px;
}


/* ---------- Responsive ---------- */
/* Smartphone */
@media (max-width:768px) {

.container {
    padding: 35px 6px;
}

.profile .text {
    font-size: 12px;
}

.social {
    padding: 14px 3px;
    font-size: 10px;
}
.social span {
    font-size: 11px;
}

}


@media (orientation: landscape) {


.container {
    padding: 35px 20px;
}

.profile .text {
    font-size: 15px;
}

.social {
    padding: 14px 7px;
    font-size: 12px;
}
.social span {
    font-size: 14px;
}

}
