/* ------------------------------------- */
/* Fonts ................... */
/* ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* ------------------------------------- */
/* Variables ................... */
/* ------------------------------------- */
:root {
    --bg: #1e293b;
    --dark: #475569;
    --black: #000000;
    --white: #FFFFFF;
  }

/* ------------------------------------- */
/* GLOPAL ................... */
/* ------------------------------------- */
body {
    background: var(--bg);
    font-family: "Raleway", sans-serif;
    font-size: 16px;
}

.main {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.sketch{
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

/* ------------------------------------- */
/* Main Content ................... */
/* ------------------------------------- */

.main-content {
    color: var(--white);
    text-align: center;
    z-index: 1;
    display: inline-block;
}

.main-content .logo {
    width: 120px;
    height: 120px;
    border: 5px solid var(--dark);
    border-radius: 50%;
}

/* ------------------------------------- */
/* Social ................... */
/* ------------------------------------- */

.main-content .social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.social-item {
    height: 48px;
    width: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--dark);
    border-radius: 4px;
    transition: all 0.5s;
    fill: var(--white);
    padding: 4px;
}

.social-item:hover {
    background-color: var(--dark);
}

.social-item .icon {
    width: 32px;
    height: 32px;
}