.main-wrapper{
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 20px auto;
    width: 100%;
}

    .main-wrapper .Logo{
        align-self: center;
    }

    .main-wrapper .social-wrapper{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 650px;
        align-self: center;
        margin-top: 50px;
    }

        .main-wrapper .social-wrapper a{
            display: flex;
            flex-direction: column;
            text-decoration: none;
        }

            .main-wrapper .social-wrapper a div{
                width: 200px;
                height: 200px;
                background-color: #ededed;
                border: 2px solid #cecece;
            }

            .main-wrapper .social-wrapper a div.instagram{
                background: url(inst.png) no-repeat center center;
            }
            .main-wrapper .social-wrapper a div.youtube{
                background: url(you.png) no-repeat center center;
            }
            .main-wrapper .social-wrapper a div.tiktok{
                background: url(tik.png) no-repeat center center;
            }


            .main-wrapper .social-wrapper a span{
                text-align: center;
                font-size: 40px;
                color: #333;
                font-family: 'Blacksword Regular';
                margin-top: -30px;
                text-shadow: 5px 4px 3px rgba(0,0,0,0.25);
            }

@font-face {
    font-family: 'Blacksword Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Blacksword Regular'), url('Blacksword.woff') format('woff');
}