
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
html, body {
    margin: 0;
    padding: 0;
} 
body {
    color: #fbfbfb;
    font-size: 1rem;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.5;
    background-color: #263238;
}

.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 100vh;
}
.soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    
    img {
        width: clamp(250px, 45%, 400px);
    }
    p:first-of-type {
        font-size: clamp(1.75rem, 3vw, 2.25rem);
        font-weight: 700;
        line-height: 1;
        text-transform: capitalize;
        margin-bottom: 0;
    }
    p:last-of-type {
        font-size: clamp(1rem, 1.15vw, 2rem);
        line-height: 1;
        margin-bottom: 0;
    }
}
.platform {
    display: flex;
    align-items: center;
    gap: 1.5rem;

    a {
        display: grid;
        place-items: center;
        width: 40px;
        aspect-ratio: 1;
        text-decoration: none;
        background-color: #fff;
        border-radius: .5rem;

        img {
            width: 70%;
            height: 70%;
            object-fit: cover;
        }
        &:last-child img {
            width: 85%;
            height: 85%;
        }
    }
}