* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

form {
    width: 300px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f9f9f9;
}

input[type="text"],
input[type="url"],
select {
    width: calc(100% - 20px);
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}
#container div{
    width: 300px;
    height: 400px;
}
#container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
#container img {
    width: 300px;
    height: 200px;
}

#container button {
    display: inline-block;
    padding: 5px 10px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #007bff;
    border-radius: 5px;
    color: #ffffff;
    background-color: #007bff;
    margin-right: 5px;
}
#Search{
    width: 300px;
}

div #submita{
    width: 50px;
}
