/*
Theme Name: Hippo Simple Theme
Theme URI: https://hippofrenchtacos.com.tr/
Author: hippofrenchtacos.com.tr
Description: Sadece merkezde logo bulunan ultra sade tema.
Version: 1.1.0
Text Domain: hippo-theme
*/

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

body {
    background-color: #fcfcfc;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.centered-logo-container {
    animation: fadeIn 1.2s ease-out;
}

.centered-logo-container img {
    max-width: 300px;
    height: auto;
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
