:root {
    --primary-color: rgb(96, 93, 97);
    --secondary-color: rgb(248, 252, 250);
    --btn-primary: rgb(213, 168, 219);
}

html {
    height: 100%;
}

body {
    background-image: url(adrian-infernus-1477595-unsplash.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 70px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.wrapper {
    color: var(--secondary-color);
    font-family: Montserrat;
    text-align: center;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4 {
    font-family: Raleway;
}

hr.style {
    border-color: var(--primary-color);
    border-top: 3px solid var(--primary-color);
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

img {
    padding-bottom: 20px;
}

.image-style {
    border-radius: 100%;
    width: 250px;
}

/* BUTTON DESIGN */

.btn {
    border: 0 none;
    font-weight: 700;
    text-transform: uppercase;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: 0 none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background: var(--btn-primary);
}

.btn-primary:active, .btn-primary.active {
    background: var(--primary-color);
    box-shadow: none;
}

.btn-lg.round {
	border-radius: 24px;
}
