body,
footer {
    text-align: center
}

a,
a:active,
img {
    box-shadow: 0 4px 8px rgba(0, 0, 0, .2)
}

h1,
img {
    margin-bottom: 20px
}

#cookie_div,
.buttons,
body,
main {
    display: flex
}

#cookie_div input,
a {
    transition: background-color .3s, transform .3s, box-shadow .3s
}

#cookie_div input:hover,
img:hover {
    transform: scale(1.1)
}

#cookie_div,
a,
form button {
    background-color: #007bff;
    color: #fff
}

a:hover,
form button:hover {
    background-color: #0056b3
}

body {
    font-family: Arial, sans-serif;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #92bdfe, #e7ffb4);
    color: #333;
    margin: 0;
    min-height: 100vh;
    box-sizing: border-box
}

main {
    flex: 1;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center
}

footer {
    width: 100%;
    padding: 10px 0
}

footer p a {
    padding: 8px 15px
}

img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #333;
    transition: transform .3s, box-shadow .3s
}

img:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, .4)
}

.buttons {
    flex-wrap: wrap;
    justify-content: center
}

a {
    display: inline-block;
    font-size: 1em;
    padding: 12px 25px;
    margin: 8px;
    border-radius: 25px;
    text-decoration: none
}

a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, .3)
}

a:active {
    transform: translateY(0) scale(.98)
}

h1 {
    color: #444;
    letter-spacing: 2px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, .2);
    font-size: 50px
}

p {
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px
}

#cookie_div {
    border: solid;
    width: 300px;
    height: 200px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    position: absolute;
    bottom: 10px;
    left: 5px;
    z-index: 3
}

#cookie_div input {
    margin-top: 10px;
    padding: 10px;
    background-color: #fff;
    border-radius: 7px;
    outline: 0
}

form label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px
}

form button,
form input,
form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em
}

form input:focus,
form textarea:focus {
    border-color: #007bff;
    outline: 0;
    box-shadow: 0 0 5px rgba(0, 123, 255, .5);
    margin-top: 10px
}

form textarea {
    resize: none
}

form button {
    margin-top: 10px;
    margin-bottom: 10px;
    border: none;
    cursor: pointer;
    transition: background-color .3s
}