@import url('./left.css');
@import url('./right.css');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    width: 100vw;
    height: 100vh;
    background-color: #C5E4E7;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}


h1{
    font-weight: 700;
    text-align: center;
    color: hsl(183, 100%, 15%);
    letter-spacing: 10px;
    line-height: 1.2;
    /* margin: 10% auto; */
}

.container{
    background-color: #fff;
    height: min(50%, 500px);
    width: min(75%, 750px);
    border-radius: 20px;
    display: flex;
    gap: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}



@media (min-width: 300px) and (max-width: 650px) {
        body{
        height: 150vh;
    }

    .container{
        height: 90%;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
    }
}