@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Roboto:wght@100&display=swap');

body, html {
    font-family: 'Open Sans';
    margin:0;
    padding:0;
    background-color: rgb(247, 248, 252);
}

.container {
    overflow-y: scroll;
    display:grid;
    grid-template-columns: 2.5fr 7fr;
    margin-left: auto;
    margin-right: auto;
    background-color: white;
    height:85vh;
    width:75vw;
    box-shadow: 0 0 2px 2px rgba(0,0,0,0.1);
}

.left{
    width:100%;
    height:100%;
    border-right:0.6px solid rgb(192, 192, 192);
    display:flex;
    flex-direction: column;
}
a span {
    margin-left:3vw;
    font-size:15px;
    font-weight: 500;
}
.left a {
    height:40px;
    width:100%;
    color:#373737;
    text-decoration: none;
    padding-top:20px;
}
.left a:hover {
    background-color: whitesmoke;
    cursor: pointer;
}
.active {
    font-weight: bold;
}
.right {
    text-align: center;
}
.btn {
    cursor:pointer;
    border:none;
    font-weight:bolder;
    color:white;
    background-color: rgb(0, 149, 255);
    border-radius:4px;
    padding:10px 15px;
}
.success {
    background-color: lightseagreen;
}
.failure {
    background-color: crimson;
}
@media only screen and (max-width: 600px) {
    .left a {
        margin-left:0;
    }
    .left span {
        margin-left: 3px;
        font-size:13px;

    }
    .container {
        width:100%;
        margin-left: 5px;
        margin-right: 35px;
    }

}
