Помогите пожалуйста расставить заголовок в контейнере чтобы он был навверху по центре и преподнять часы чтобы смог расставить кнопки для сот сетей

html

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Мой сайт для портфолио</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <div class="container">
        <f1 class="zagolovok">Ynirk</f1>
        <div class="wrapper">
            <div class="display">
                <div id="time"></div>
            </div>
            <span></span>
            <span></span>
        </div>
    </div>



    <script src="main.js"></script>
</body>
</html>

CSS

    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.zagolovok{
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 50px;
    left: 50px;
}


html, body{
    width: 100%;
    height: 100%;
}


body {
    background-color: #2e3234;
    place-items: center;
}

.container{
    width: 500px;
    height: 350px;
    background-color: #5c5c5c;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top:calc(50% - 150px);
    border-radius: 15px;
    box-shadow:
       inset 0 -3em 3em rgba(0,0,0,0.1),
             0 0  0 2px rgb(51, 51, 51),
             0.3em 0.3em 1em rgba(0,0,0,0.3);
}

.wrapper{
    height: 100px;
    width: 360px;
    position: relative;
    background: linear-gradient(135deg, #14ffe9, #ffeb3b, #ff00e0);
    border-radius: 10px;
    cursor: default;
    animation: animate 1.5s linear infinite;
}

.wrapper, .display,
.wrapper span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.wrapper .display{
    z-index: 999;
    height: 85px;
    width: 345px;
    background: #1b1b1b;
    border-radius: 6px;
    text-align: center;
}

.display #time {
    line-height: 85px;
    color: #fff;
    font-size: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #14ffe6, #ddeb3b, #ff00e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animate 1.5s linear infinite;
}


@keyframes animate{
    100%{
        filter: hue-rotate(360deg);
    }
}

.wrapper span {
    height: 100%;
    width: 100%;
    border-radius: 10px;
    background: inherit;
}


.wrapper span:first-child{
    filter: blur(7px);
}

.wrapper span:last-child{
    filter: blur(20px);
}

заранее спасибо!


Ответы (0 шт):