body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-color, span {
    color: #fb4103;
}

a {
    transition: all 200ms;
}

a:hover {
    opacity: 60%;
}

.custom-bg {
    background-color: #fdf0e0;
}

.details {
    max-width: 720px;
}

.contact-links {
    display: flex;
    flex-direction: row;
}

.link {
    width: 50%;
}

.social {
    text-align: center;
}

svg {
    fill: #fb4103;
}

.contact svg {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}

.social svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 500px) {
    .contact-links {
        flex-direction: column;
    }
    
    .link {
        width: 100%;
        margin-bottom: .25rem;
    }
}