/* Moves container down to align correctly */
.container {
    margin-top: 5%;
}

/* Home page font sizes */
#title {
    font-size: 120%;
}
h4 {
    font-size: 70%;
}
#smallText {
    font-size: 65%;
}

#imageTitle {
    margin-top: 15%;
}

/* Image caracal */
/* #imageCarousel div {
    background-color: red;
    position: fixed;
    height: 100vh;
    width: 50vw;
    right: 10px;
} */
#imgCarousel {
    width: 50vw;
    /* position: relative; */
    position: fixed;
    right: 0;
    top: 0;
    z-index: 1;
}
#carouselImage {
    height: 100vh;
}
#carouselBtns {
    padding: 5px;
}
#carouselNavigationBtns {
    transition: 250ms !important;
}
#carouselNavigationBtns:hover {
    background-color: rgba(128, 128, 128, 0.516);
}

/* Changes the element for the footprint panel */
#footprintPanel {
    border: 1px solid black;
    width: 20%;
    padding: 20px;
}

/* Changes the circle element in the footprint panel */
#footprintPanel #score {
    background-color: red;
    border-radius: 50%;

    /* Width/Height and other */
    width: 100px;
    height: 100px;
    margin-bottom: 10px;

    /* Font */
    font-size: 150%;

    /* Centering */
    transform: translate(-50%,0);
    margin-left: 50%;

    /* Misc */
    border: 1px solid black;
    
}

/* Home screen buttons */
.container button {   /*, #imageCarousel button*/
    background-color: #00A9A5;

    /* Changes the border of the buttons */
    border: 1px solid black;
    border-radius: 0px;

    /* Changes font (size, colour, weight and more) */
    font-weight: 700;
    font-size: 75%;

    /* Sizing/alignment */
    padding: 7px;
    width: 20%;
    margin-top: 5px;

    /* Changes the transition between the normal and hover effect */
    transition: 250ms;
}
/* Button hover effect */
.container button:hover {
    background-color: #19535fca;
}

/* Popup */
#popupBackground {
    background-color: rgba(0, 0, 0, 0.623);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
#carbonPopup {
    background-color: white;
    position: fixed;
    left: 50%;
    top: 20%;
    width: 50%;
    z-index: 99;
    transform: translate(-50%,0);
    padding: 10px;
}
#popup {
    display: none;
}

#carbonPopup input[type="text"] {
    width: 100%;
    border-radius: 0px;
    border: 1px solid black;
    padding: 5px;
}
#carbonPopup input[type="text"]:focus {
    outline: none;
}
#carbonPopup button {
    padding: 5px;
    width: 20%;
    margin-top: 5px;

}
