body {
    background-color: rgba(0, 0, 0, 0.729);
    margin: 0;
    padding: 0;
}

a {
    color: inherit;
}

.navContainer {
    display: flex;
    padding-left: 1em;
    justify-content: space-between;
    position: sticky;
    background-color: rgb(26, 31, 37);
    min-height: 7vh;
    z-index: 100;
    top: 0;
    bottom: 0;
    box-shadow: 0px 5px 8px -9px rgba(0, 0, 0, 0.75);
}

.navLeft {
    display: flex;
    align-items: center;
}

.navRight {
    display: flex;
    align-items: center;
    padding-right: 1em;
}

.logo {
    font-weight: bold;
    font-size: 36px;
    color: rgb(255, 201, 108);
    font-family: "Lato", sans-serif;
}

h3 {
    color: white;
    font-family: "Lato", sans-serif;
}

p {
    font-family: "Lato", sans-serif;
}

.cardContainer {
    display: flex;
    align-items: center;
    min-height: 93vh;
    justify-content: center;
    box-sizing: border-box;
    background-image: url("https://upload.wikimedia.org/wikipedia/en/c/c8/Very_Black_screen.jpg");
    transition: background-image 1s ease-in-out 0.1s;
    background-repeat: no-repeat;
    background-position: center top;
}

.quoteBox {
    width: 600px;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.6);
}

.cardContainer p {
    color: aliceblue;
}

.custom-btn {
    width: 130px;
    height: 40px;
    padding: 10px 25px;
    border: 2px solid #000;
    font-family: "Lato", sans-serif;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

/* 1 */
.btn-1 {
    transition: all 0.3s ease;
    background-color: black;
    color: white;
}
.btn-1:hover {
    box-shadow: 0px 0px 7px 3px #f9f9f9;
}
