

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body{
    background-color: #fff;
    animation: loading 300ms ease-in-out forwards;
}


.container{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
}


h2{
    /*font-size: 45px;*/
    font-weight: bold;
    letter-spacing: 8px;
    text-align: center;
}


img{
    width: 60%;
}

#performance{
    width: 50%;
    transform: translateY(-40px);
}

.container__left{
    width: 50%;
    height: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    border-right: 2px solid #d3d3d3;
}

.container__right{
    width: 50%;
    height: 100%;
    padding: 1rem;

    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
}

a{
    background: transparent;
    padding: 0.4rem 0.8rem;
    border: 1px solid black;
    font-weight: bold;
    cursor: pointer;
    font-size: 26px;
    transition: 300ms ease-in-out;
    text-decoration: none;
    color: black;
}

a:hover{
    background-color: black;
    color: #fff;
}


@keyframes loading {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}


@media screen and (max-width: 900px) {
    .container{
        flex-direction: column;
        flex-wrap: nowrap;
    }

    .container__right{
        width: 100%;
    }

    .container__left{
        width: 100%;
        border-right: none;
        border-bottom: 2px solid #d3d3d3;
    }
}

@media screen and (max-width: 900px) {
    #performance{
        width: 50%;
        transform: translateY(-10px);
    }
}