@font-face {
    font-family: Cinema;
    src: url('./assets/Cinema-Sunday.otf');
}
@font-face {
    font-family: Delight;
    src: url('./assets/Delight-Light.ttf');
}
:root{
    --main-color: #0000FF;
    --test-color: #000000;
    --main-font: Cinema;
    --sec-font: Delight;
}
body{
    color: var(--main-color);
    font-family: Delight;
    font-weight: 100;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}
.main_text{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.main_text_title{
    display: flex;
    flex-direction: column;
}
.title{
    font-size: 5em;
    line-height: 45px;
}
.subtitle{
    text-align: right;
    font-weight: 100;
    font-size: 0.9em;
}
.estamos{
    font-size: 5em;
    font-weight: 900;
}
.trabajando{
    font-family: var(--main-font);
    font-size: 4em;
    margin-bottom: 10px;
    box-sizing: border-box;
}
h4{
    font-weight: 100;
    font-size: 1.4rem;
}

.main_image{
    width: 100%;
    height: 50%;
    display: flex;
    align-items:center;
    justify-content: center;
    box-sizing: border-box;
    position: relative;
    padding-bottom: 10px;
}
.main_circle{
    position:absolute;
    width: 75%;
    aspect-ratio: 1/1;
    background-color: var(--main-color);
    border-radius: 100%;
    transform: translateY(12%);
}
.main_image_circle{
    position: absolute;
    width: 100%;
    z-index: 2;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_img{
    width: 71%;
}
h1{
    font-family: var(--main-font);
    font-weight: 500;
}
@media screen and (min-width: 900px){
    h4{
        font-size: 1.7rem;
    }
}
@media screen and (min-width: 1000px) {
    .main_text{
        width: 50%;
        height: 100%;
    }
    .main_image{
        width: 50%;
        height: 100%;
        justify-content: center;
    }
    body{
        flex-direction: row;
    }
    .estamos{
        font-size: 7em;
    }
    .trabajando{
        font-family: var(--main-font);
        font-size:5.5em;
        margin-bottom: 10px;
        box-sizing: border-box;
    }
    h4{
        font-size: 1.9rem;
    }
}
@media screen and (max-width: 400px){
    h4{
        font-size: 1.2rem;
    }
}