@import url('https://fonts.googleapis.com/css2?family=Inter:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #090B1A;
}

.container-all {
    margin: 150px auto 100px auto;
    display: flex;
    color: white;
    flex-wrap: wrap-reverse;
    justify-content: center;
    padding-left: 5px;
    padding-right: 5px;
}

.img {
    height: 395px;
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    border: 0px;
}

img {
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    height: 394px;
}

.container-text-info {
    min-width: 300px;
    max-width: 500px;
    width: 100%;
    height: 100%;
    min-height: 400px;
    max-height: 600px;
    background-color: #1c1938;
}

.title {
    font-size: 2rem;
    margin-left: 35px;
    margin-top: 23px;
    font-weight: bold;
}

span {
    color: #a25dd4;
}

.text {
    color: rgba(255, 255, 255, 0.728);
    margin-top: 25px;
    margin-left: 35px;
    font-size: 1rem;
}

.info {
    display: flex;
    margin-top: 75px;
    flex-wrap: wrap;
}

.info div {
    margin: auto;
}

.info div h1 {
    font-size: 1.6rem;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.info div p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.612);
    font-weight: bold;
    letter-spacing: 1.7px;
    margin-top: 15px;
}