:root {
    --black: black;
    --darkest: rgb(180, 78, 9);
    --dark: rgb(150, 102, 40);
    --medium: rgb(179, 139, 83);
    --light: rgb(224, 199, 165);
    --accent: rgb(243, 147, 92);
    --white: white;
}

html, body {
    width: 100%;
    height:100%;
}

body {
    background: linear-gradient(-45deg, var(--light), var(--dark), var(--accent), var(--darkest));
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

a.selected {
    background-color:#1F75CC;
    color:white;
    z-index:100;
}

.messagepop {
    background-color: var(--medium);
    border:1px solid var(--light);
    cursor:default;
    display:none;
    margin-top: 150px;
    position:absolute;
    text-align:left;
    width:394px;
    z-index:100;
    padding: 20px;
    padding-top: 10px;
    left: 50%; 
    transform: translate(-50%, -50%); 
    font-size: 21.25px;
    color: black;
    border-radius: 25px;
    line-height: 25px;
}

label {
    display: block;
    margin-bottom: 3px;
    padding-left: 15px;
    text-indent: -15px;
}

.messagepop p, .messagepop.div {
    border-bottom: 1px solid #EFEFEF;
    margin: 8px 0;
    padding-bottom: 8px;
}

#msg {
    font-size: 25px;
    padding-bottom: 10px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
    text-align: center;
}

#message_submit, #close {
    font-size: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-weight: bold;
    text-align: center;
}

i {
    padding: 10px;
}

.col-4 {
    margin: 20px;
    padding: 10px;

}

.col-lg-2{
    padding:10px;
    justify-content: center;
}

#dogBreed {
    font-size: 35px;
    font-weight: bold;
}

.dogInfo {
    font-size: 20px;
    flex-wrap: wrap;
    margin-left: 20px;
    justify-content: center;
}

#image {
    margin: 10px 10px;
    justify-content: center;
    border-radius: 50px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    max-height: 350px;
}

#img0, #img1, #img2, #img3, #img4 {
    display: block;
    margin: auto;
    border-radius: 15px;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
    max-height: 200px;
}

.row {
    font-size: 15px; 
}

#dogBreed, #dogWeight, #dogHeight, #bredFor, #breedingGroup, #lifeSpan, #temperament {
    text-align: center;
    line-height: 45px;
}

.nav-item {
    padding-left: 50px;
    padding-right: 50px;
}

.messageOptions {
    display:flex;
    justify-content:space-around;
}

#compatible {
    font-size: 35px;
    justify-content: center;
    font-weight: bold;
    line-height: 60px;
    padding-bottom: 25px;
}

#bn0, #bn1, #bn2, #bn3, #bn4 {
    font-size: 20px;
}

#topRow {
    padding-top: 20px;
    padding-bottom: 20px;
}

#middleRow {
    justify-content: center;
}

p {
    text-align: center;
    padding-top: 20px;
    font-weight: bold;
}

div.hr-line {
    position: relative;
    display: inline-block;
    width: 74%;
    margin-left: 13%;
    margin-right: 13%;
    border: 1px solid black;
}

.compRateG {
    position: absolute;
    top: 5%;
    left: 75%;
    transform: translate(-50%, -50%);
    background: 300px;
    background-color: green;
    padding: 10px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 25px;
    border-radius: 50%;
    color: black;
    border: solid 1px black;
}

.compRateH {
    position: absolute;
    top: 5%;
    left: 75%;
    transform: translate(-50%, -50%);
    background: 300px;
    background-color: rgb(4, 235, 4);
    padding: 10px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 25px;
    border-radius: 50%;
    color: black;
    border: solid 1px black;
}

.compRateM {
    position: absolute;
    top: 5%;
    left: 75%;
    transform: translate(-50%, -50%);
    background: 300px;
    background-color: orange;
    padding: 10px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 25px;
    border-radius: 50%;
    color: black;
    border: solid 1px black;
}

.compRateL {
    position: absolute;
    top: 5%;
    left: 75%;
    transform: translate(-50%, -50%);
    background: 300px;
    background-color: red;
    padding: 10px;
    padding-left: 22px;
    padding-right: 22px;
    font-size: 25px;
    border-radius: 50%;
    color: black;
    border: solid 1px black;
}

.hidden1, .hidden2 {
    display: none;
    opacity: 0;
}

.fav, .redo {
    background-color: var(--darkest);
    border-radius: 5px;
    color: black;
    display: grid;
    font-size: 17px;
    text-align: center;
    cursor: pointer;
    width: 250px;
    border: 1px solid black;
    font-weight: bold;
    margin-left: 25px;
    margin-right: 25px;
}