<!DOCTYPE html>

<html lang="cs">

<head>

    <meta charset="UTF-8">

    <title>JablkoMánie.cz</title>

    <style>

        body {

            background-color: #2466AE;

            display: flex;

            justify-content: center;

            align-items: center;

            height: 100vh;

            margin: 0;

            font-family: Arial, sans-serif;

        }


        .square-container {

            background-color: #F4E4D5; 

            border-radius: 30px;

            padding: 40px;

            

            display: flex;

            justify-content: center;

            align-items: center;

        }


        .smiley {

            font-size: 300px;

            color: #D98D3D;

            line-height: 1; 

        }

    </style>

</head>

<body>

   <div class="square-container">

       <span class="smiley">☻︎</span>

   </div>

</body>

</html>