@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import "home.css";
@import "greenhouse.css";
@import "nav.css";
@import "loginPanel.css";
@import "reports.css";
@import "todo.css";

body, html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

main{
    position: relative;
    width: 100%;
    /*min-height: 100vh;*/
    padding-top: 45px;
}

.container__centered{
    width: 100%;
    min-height: calc(100vh - 45px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container{
    width: 100%;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container__button{
    /*margin-bottom: 15px;*/
}

.container__button-btn{
    cursor: pointer;
    padding: 20px;
    border-radius: 10px;
    color: #008ce3;
    background-color: #fff;
    border: 1px solid #008ce3;
    transition: color .3s, background-color .3s;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;

    &:hover{
        border: 1px solid transparent;
        color: #fff;
        background-color: #008ce3;
    }
}

.container__link{
    text-decoration: none;
}

.subcontainer{
    margin-bottom: 30px;
}

.subcontainer__row{
    width: 300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid black;
    border-right: 1px solid black;
    border-left: 1px solid black;
    padding: 15px 20px;

    &:last-of-type{
        border-bottom: 1px solid black;
    }
}

.subcontainer__row-title{
    font-weight: bold;
}

.subcontainer__row-value{

}