
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    min-height: 100vh;
    background: linear-gradient(to bottom, #f7efe5, #e8d9c6);
    font-family: "Poppins", Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
}


input[type="button"] {
    padding: 15px 28px;
    background-color: #d9b99b;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    color: #4b3828;
    cursor: pointer;
    transition: all 0.3s ease;
}

input[type="button"]:hover {
    background-color: #c3a27a;
    transform: scale(1.08);
}


a img {
    transition: transform 0.3s ease;
}

a img:hover {
    transform: scale(1.1);
}
