* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #181818;
    margin: 0;
    padding: 0;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

img {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 5px solid #ffffff;
}

h1 {
    font-size: 36px;
    margin-top: 20px;
    margin-bottom: 0;
    color: #ffffff;
    text-align: center;
}

p {
    font-size: 24px;
    margin-top: 0;
    color: #ffffff;
    text-align: center;
}

.links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

a {
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 30px;
    text-align: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.primary {
    background-color: #ffffff;
    color: #f7727f;
    font-weight: bold;
    margin-bottom: 40px;
}

.secondary {
background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    margin-bottom: 20px;
}

a:hover {
    color: #ffffff;
    background-color: #000000;
}