html,body,div,span,h1 {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0
}

html,body {
    height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

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

.site-wrap {
    width: 100%;
    max-width: 700px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.header img {
    margin-top: 10px;
    width: 300px;
    height: 300px;
    background-color: black;
    border-radius: 200px;
    margin-bottom: 20px;
}

.header h1 {
    font-size: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.header span {
    font-size: 12px;
    margin-top: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.social-button {
    background-color: #318CE7;
    border: none;
    border-radius: 30px;
    color: white;
    padding-top: 15px;
    padding-bottom: 15px;
    text-decoration: none;
    text-align: center;
    font-size: 16px;
    width: 95%;
    max-width: 600px;
    margin-bottom: 10px;
}

.social-button:hover {
    background-color: #7CB9E8;
}

.footer {
    min-height: 20px;
    width: 100%;
    text-align: center;
    font-size: 10px;
    margin-bottom: 10px;
}