html, body {
    margin: 0;
    font-family: sans-serif;
    font-size: 14px;
}

p {
    margin: 0;
}

.typed-cursor{
    opacity: 1;
    -webkit-animation: blink 1s infinite;
    -moz-animation: blink 1s infinite;
    animation: blink 1s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}

.is-hide {
    display: none !important;
}

/******************************************************************************/
/* OBJECT CSS
/******************************************************************************/

/* social link object */
.o-social-link {
    line-height: 35px;
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 2px;
    text-align: center;
    color: #565656;
    border: 1px solid #e4e4e4;
    border-radius: 50%;
    margin-top: 50px;
    -webkit-transition: border-color .2s ease-in, background-color .2s ease-in;
    -moz-transition: border-color .2s ease-in, background-color .2s ease-in;
    -o-transition: border-color .2s ease-in, background-color .2s ease-in;
    transition: border-color .2s ease-in, background-color .2s ease-in;
}

.o-social-link:hover {
    background-color: black;
    border-color: #000;
}

/******************************************************************************/
/* COMPONENT CSS
/******************************************************************************/

/* Home component */
.c-home {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.c-home__content {
    color: #565656;
    align-self: center;
    text-align: center;
    z-index: 1;
}

.c-home__image {
    width: 15rem;
    height: 15rem;
    margin: 20px 0 0 0;
    border-radius: 50%;
}

.c-home__name {
    font-size: 5.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.c-home__text {
    font-size: 2.3rem;
}

/* Meet component */
.c-meet {
    width: 100%;
    height: 1000px;
    padding: 0;
    display: flex;
    justify-content: center;
    position: relative;
}

.c-meet__iframe {
    width: 100%;
    height: 100%;
}