@import './fonts.css';

body {
    background-color: rgba(24, 24, 24, 1);
    color: rgba(255, 255, 255, 1);
    font-family: Nunito, sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.content {
    text-align: center;
    padding: 40px;
}

.content-img {
    width: 100%;
    max-width: 260px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.title {
    margin: 32px 0 16px;
    font-size: 56px;
}

.text {
    font-size: 32px;
}

@media (min-width: 1024px) {
    .content-img {
        max-width: 320px;
    }
}