body{
    background-color: pink;
}
.land{
    padding-top: 30px;
    text-align: center;
}
.land h1{
    font-size: 50px;
    color: black;
}
.land img{
    border: 2px solid black;
}
.control-panel{
    text-align: center;
}
.control-panel button{
    padding: 10px 20px;
    font-size: 20px;
    margin: 10px;
    border: 0px none;
}
.control-panel .perm-button{
    background-color: black;
    color: white;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
}
.control-panel .test-button{
    background-color: white;
    color: black;
    border: 2px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
}
.control-panel .perm-button:hover{
    background-color: white;
    color: black;
    border: 2px solid black;
    cursor: pointer;
}
.control-panel .test-button:hover{
    background-color: black;
    color: white;
    border: 2px solid white;
    cursor: pointer;
}
.logs{
    text-align: center;
}
.logs .log-container{
    height: 30vh;
    background-color: rgb(228, 228, 228);
    width: 50%;
    margin: 0 auto;
    overflow-y: scroll;
}
footer{
    text-align: center;
    padding: 20px;
}