/* Reset */
body,
h1,
h2,
p,
button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg,#f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: start;
    height: 100vh;
    color: #333;
}

.main {
    text-align: center;
    padding: 2rem;
    margin-top: 5vh;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
}

.message-section {
    box-sizing: border-box;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message-section h2 {
    max-width: 80%;
    font-size: 1.4rem;
}

h1 {
    font-family: 'Lato', sans-serif;
    font-size: 3rem;
    color: #ff6b6b;
}

button {
    background-color: #ff6b6b;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;

}

button:active {
    transform: scale(0.95);
    filter: brightness(95%);
}

img {
    max-width: 90%;
    max-height: 45vh;
    margin: auto;
    border-radius: 30px;
}

img:hover {
    transform: translate(0, 1rem) scale(1.1);
    transition: 0.5s;
}

.dialog {
    border: none;
    border-radius: 5px;
}

.dialog-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.dialog-content input {
    font-family: sans-serif;
}
