@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    padding: 80px 10px;
    width: 70%;
    margin: 10px auto;
}

li {
    list-style: none;
    padding: 10px 5px;
    border-bottom: 1px solid #ddd;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;
}



input,
textarea,
select,
option {
    width: 380px;
    padding: 5px 10px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
}

textarea {
    height: 100px;
    resize: vertical;
}

button {
    padding: 5px 10px;
    color: white;
    cursor: pointer;
    border-radius: 4px;
    background-color: #2684fc;
    transition: background-color 0.3s ease;
    border: 1px solid #0060de;
}

button:hover {
    background-color: #0060de;
    border: 1px solid #2684fc;
}

.template {
    display: inline-block;
    text-align: center;
    width: 300px;
    /* border: 1px solid #ddd; */
    padding: 5px;
    margin: 10px 0;
}

img {
    width: 280px;
    border: 1px solid #ddd;
    height: 340px;
}

.thumbnail {
    width: 280px;
    height: 350px;
    border-radius: 4px;
    margin: 10px auto;
    background-color: #f9f9f9;
}

h1,
h2,
h3 {
    margin-bottom: 20px;
}

p {
    margin: 10px 0;
    text-align: center;
}

h4,
a {
    font-size: 16px;
    font-weight: 500;
}