* {
    margin: 0;
}

body {
    width: 100%;
    height: 100vh;
}

.row {
    display: flex;
    flex-direction: row;
}

.col {
    display: flex;
    flex-direction: column;
}

.main {
    height: 100vh;
    width: 100%;
    background-color: #02090D;
    color: #FFF;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 28.99px;
    letter-spacing: 0.02em;
    background-image: url(./img/Mask\ group.png);
    background-repeat: repeat;
    background-size: 60%;
}

.header {
    justify-content: space-around;
    align-items: center;
}

.title {
    font-weight: 600;
    font-size: 42px;
}

.title-wrapper {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    gap: 48px;
}

.description {
    color: #FC3106;
}

.logo-animation {
    position: absolute;
    bottom: 30px;
    left: 40px;
}
.title {
    text-align: center;
    line-height: 50px;
}

@media (max-width: 1100px) {
    .header {
        flex-direction: column;
    }

    .logo img {
        width: 100%;
    }
}