* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #222;
    color: #fff;
    line-height: 1.6;
    font-size: 16px;
    margin-top: 20px;
}

.container {
    width: 80vw;
    height: 90vh;
    background-color: #111;
    margin: auto;
    overflow: auto;
    padding:20px;
    display: grid;
    grid-template-columns: 5fr 3fr;
    grid-gap: 30px;
    border-radius: 10px;
}

.image-container {
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

.image-container img {
    width: 50vw;
    height: 70vh;
    border-radius: 5px;
    margin-bottom: 20px;
}

.upload input[type="file"] {
    display: none;
}

.upload label {
    padding: 10px;
    background-color: #333;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-radius: 5px;
}

.tools ul ,.tools ul li{
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 10px;
}

.tools ul li:last-child{
    flex-direction: row;
    justify-content: space-between ;
}

.tools ul li a , .tools ul li span{
    padding: 10px;
    margin: 10px;
    background-color: #34b120;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

.tools ul li span{
    background-color: rgb(15, 78, 141);
}

.tools ul li a:hover,
.tools ul li span:hover{
   
    transform: scale(1.1);
}

@media screen And (max-width:700px){
    
    .container {
        grid-template-columns: 1fr;
    }
        .image-container img {
            width: 75vw;
        }
}