* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #EBEBEB !important;
}

#home {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 100px);
    border-left: 1px solid #042433;
    border-right: 1px solid #042433;
}

.right-main {
    display: flex;
    align-items: end;
}

.circle-main-left {
    width: 150px;
    height: 150px;
    border-bottom-right-radius: 300px;
    border-right: 1px solid #042433;
    border-bottom: 1px solid #042433;
}

.circle-main-right {
    width: 150px;
    height: 150px;
    border-top-left-radius: 300px;
    border-top: 1px solid #042433;
    border-left: 1px solid #042433;
    margin-left: -50px !important;
}

.center-main {
    padding: 50px;
    display: flex;
    flex-direction: row;
}

.center-main-left {
    display: flex;
    flex-direction: column;
    width: 50%;
}

.center-main-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.text-container-title {
    display: flex;
    align-items: end;
    justify-content: start;
    height: 60%;
    padding: 20px;
}

.text-container-subtitle {
    display: flex;
    align-items: start;
    justify-content: start;
    flex: 1;
    padding: 20px;
}

.text-container-title h1 {
    color: black;
    text-align: start;
    font-family: "Poetsen One", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 90px;
}

.text-container-subtitle h5{
    font-family: "Share Tech Mono", monospace;
    font-weight: 400;
    font-style: normal;
    color: #42A7FD;
    transition: all 0.5s ease;
    font-size: 30px;
}

.center-main-right img {
    border: 1px solid #042433;
    width: 70%;
}

/* Estilos para telas pequenas */
@media (max-width: 575.98px) {

    .left-main {
        width: 20px;
        border-right: 1px solid #042433;
    }

    .center-main {
        width: calc(100% - 40px);
        flex-direction: column;
        padding: 10px;
    }

    .right-main {
        width: 20px;
        border-left: 1px solid #042433;
    }

    .circle-main-left {
        width: 50px;
        height: 50px;
    }

    .circle-main-right {
        width: 50px;
        height: 50px;
        margin-left: -30px !important;
    }

    .center-main-left {
        width: 100%;
        flex: 1;
    }
    
    .center-main-right {
        width: 100%;
        flex: 1;
    }

    .text-container-title {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text-container-title h1 {
        text-align: center;
        font-size: 50px;
    }

    .text-container-subtitle h5 {
        text-align: center; 
        font-size: 20px;
    }
}

/* Estilos para telas médias */
@media (min-width: 576px) and (max-width: 767.98px) {

    .left-main {
        width: 50px;
        border-right: 1px solid #042433;
    }

    .center-main {
        width: calc(100% - 100px);
        flex-direction: column;
        padding: 10px;
    }

    .right-main {
        width: 50px;
        border-left: 1px solid #042433;
    }

    .center-main-left {
        width: 100%;
        flex: 1;
    }
    
    .center-main-right {
        width: 100%;
        flex: 1;
    }

    .text-container-title {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text-container-title h1 {
        text-align: center;
        font-size: 50px;
    }

    .text-container-subtitle h5 {
        text-align: center; 
        font-size: 20px;
    }

}

/* Estilos para telas grandes */
@media (min-width: 768px) and (max-width: 991.98px) {

    .left-main {
        width: 100px;
        border-right: 1px solid #042433;
    }

    .center-main {
        width: calc(100% - 200px);
        flex-direction: column;
        padding: 10px;
    }

    .right-main {
        width: 100px;
        border-left: 1px solid #042433;
    }
    
    .center-main-left {
        width: 100%;
        flex: 1;
    }
    
    .center-main-right {
        width: 100%;
        flex: 1;
    }

    .text-container-title {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .text-container-title h1 {
        text-align: center;
        font-size: 70px;
    }

    .text-container-subtitle h5 {
        text-align: center; 
        font-size: 30px;
    }
}

/* Estilos para telas extra grandes */
@media (min-width: 992px) and (max-width: 1199.98px) {
   
    .left-main {
        width: 100px;
        border-right: 1px solid #042433;
    }

    .center-main {
        width: calc(100% - 200px);
    }

    .right-main {
        width: 100px;
        border-left: 1px solid #042433;
    }

    .text-container-title h1 {
        font-size: 60px;
    }
    
    .text-container-title{
        height: 50%;
        text-align: center;
    }

    .text-container-subtitle {
        text-align: center;
    }
    
    .center-main-right img {
        width: 100%;
    }

}

/* Estilos para telas ultra grandes */
@media (min-width: 1200px) {
   
    .left-main {
        width: 100px;
        border-right: 1px solid #042433;
    }

    .center-main {
        width: calc(100% - 200px);
    }

    .right-main {
        width: 100px;
        border-left: 1px solid #042433;
    }
    
}