* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    -o-user-select: none !important;
}
html,
body {
    height: 100%;
    font-family: "Roboto", sans-serif;
}

body {
    background-color: #000;
    background-image: url("./media/bg.webp");
    color: #fff;
    padding: 10% 0;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

main > div:nth-child(1) {
    background: #fff;
    border-radius: 10px;
    color: #000;

    font-size: 12px;
    padding: 5px 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.logo {
    max-width: 65%;
    height: auto;
    display: block;
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
.brands img {
    max-width: 100px;
    height: auto;
    display: block;
}

h1 {
    font-size: 1rem;
    margin-bottom: 20px;
}

@media screen and (min-width: 600px) {
    main > div:nth-child(1) {
        font-size: 13px;
        padding: 5px 8px;
    }
    .logo {
        max-width: 65%;
    }
    .brands img {
        max-width: 120px;
    }
    h1 {
        font-size: 1rem;
    }
}

@media screen and (min-width: 900px) {
    body {
        padding: 5% 0;
    }
    main > div:nth-child(1) {
        font-size: 14px;
        padding: 5px 10px;
    }
    .logo {
        max-width: 50%;
    }
    h1 {
        font-size: 1.2rem;
    }
}
