body {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    height: 100vh;
    margin: 0;
}

.main-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    padding: 40px 20px;
    box-sizing: border-box;
    gap: 40px;
}

.header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.header p {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 100;
    color: black;
    margin: 0px;
}

.logo {
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    width: 120px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.socials img {
    width: 20px;
}

.socials img:hover {
    cursor: pointer;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.link-button {
    background-color: black;
    border: none;
    color: white;
    text-align: start;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 20px;
    width: 100%;
    max-width: 300px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.link-button:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
}

.link-button img {
    width: 20px;
    height: 20px;
}

.rights-reserved {
    font-family: 'Roboto', sans-serif;
    color: #c6c6c6;
    font-weight: 100;
    font-size: 14px;
    padding: 0px;
    margin: 0px;
}