body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

.container {
    background-color: #0f0f0f;
    color: #F9F9F9;
    background-image: url("./assets/mesh.svg");
    background-size: 100%;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.text {
    font-size: 90px;
    margin-top: 10px;
}

.image {
    width: 400px;
    height: 350px;
}

@media screen and (max-width: 360px) {
    .text {
        font-size: 40px;
    }

    .image {
        width: 200px;
        height: 150px;
    }
}

@media screen and (max-width: 768px) {
    .text {
        font-size: 60px;
    }

    .image {
        width: 250px;
        height: 200px;
    }
}