* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
   background: url(imagens/bg.jpg) no-repeat center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.profile-pic {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
}

h1 {
    font-size: 24px;
    margin-bottom: 5px;
}

p {
    color: #666;
    margin-bottom: 10px;
}

.location {
    color: #888;
    font-size: 14px;
    margin-bottom: 25px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background-color: #E1306C;
}

.facebook {
    background-color: #1877F2;
}

.site {
    background-color: #FF5733;
}

.link:hover {
    opacity: 0.9;
}

.link i {
    font-size: 20px;
}

.localizacao {
	background-color: #e61919;
}


