* {
    margin: 0;
    padding: 0;
}

.main {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Inter, sans-serif;
    background-color: hsl(0, 0%, 8%);
}

a {
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.container {
    background-color: hsl(0, 0%, 12%);
    height: 530px;
    width: 352px;
    border-radius: 10px;
    padding: 20px 16px;
    margin: 0px 4px;
}

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

.image {
    height: 123px;
    width: 123px;
    border-radius: 50%;
}

.heading {
    text-align: center;
}

.heading h1 {
    margin-top: 13px;
    margin-bottom: 4px;
    font-size: 24px;
}

.heading h4 {
    color: hsl(75, 94%, 57%);
    font-size: 14px;
}

.heading p {
    margin-top: 24px;
    margin-bottom: 16px;
    font-size: 14px;
}

.link_container {
    height: 320px;
    width: 352px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: hsl(0, 0%, 20%);
    height: 45px;
    width: 324px;
    margin: 7px 0px;
    text-align: center;
    border-radius: 8px;
}

.link:hover {
    color: black;
    background-color: hsl(75, 94%, 57%);
}
