:root {
    --connect-red: #F3436A;
}

@font-face {
    font-family: "Quicksand";
    src: url('../font/Quicksand-Regular.ttf');
}

@font-face {
    font-family: "Quicksand-Bold";
    src: url('../font/Quicksand-Bold.ttf');
}

@font-face {
    font-family: "Quicksand-SemiBold";
    src: url('../font/Quicksand-SemiBold.ttf');
}

#qr_container {
    text-align: center;
    margin: 20px auto 20px auto;
    height: 150px;
    width: 150px;
}

.image-container {
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

.image-container img {
    width: 28%;  /* Three images at full width */
    max-width: 100%;
    height: auto;
}

#avatar_container {
    float: none;
    text-align: center;
    margin: 0px auto 10px auto;
}

#avatar {
    /* margin: 0 auto 0 auto; */
    width: 80px;
    height: 80px;
    border-radius: 40px;
    display: inline-block;
    margin: 0px auto;
}

.top50 {
    margin-top: 50px !important;
}

body {
    font-family: "Quicksand";
    max-width: 950px;
    min-width: 360px;
    margin: 12px auto 10px auto;
    font-size: 16px;
}

body.invite {
    max-width: 768px;
}

.qrcode {
    margin: 0px auto 15px auto;
    width: 140px;
}

.header {
    margin: 10px auto 15px auto;
    width: 540px;
    display: flex;
}

.logo {
    width: 90px;
    height: 90px;
    border-radius: 18px;
    margin-right: 20px;
}

.title {
    margin: 0px auto 0px auto;
    text-align: left;
    font-size: 40px;
    font-weight: 700;
    font-family: "Quicksand-Bold";
    color: var(--connect-red);
}

.subtitle {
    margin: 0px auto 0px auto;
    text-align: left;
    font-size: 25px;
    font-weight: 600;
    color: black;
    font-family: "Quicksand-SemiBold";
}

.content {
    margin: 0px 20px 0px 20px;
    color: #666666;
    line-height: 1.5;
    clear: both;
}

.highlight {
    color: black;
    font-weight: 700;
    font-family: "Quicksand-SemiBold";
}

.circle {
    display: inline-block;
    width: 24px; /* Adjust the width and height to make a larger or smaller circle */
    height: 24px;
    min-width: e0px;
    background-color: var(--connect-red);
    color: #fff;
    border-radius: 50%; /* Create a circular shape */
    text-align: center; /* Center the text horizontally and vertically */
    font-size: 18px; /* Adjust font size as needed */
    line-height: 24px; /* Align the text vertically in the center */
    margin-right: 10px;
}

.buttons {
    text-align: center;
}

.step {
    margin: 15px 20px 10px 20px;
    color: var(--connect-red);
}

.connect_id {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    font-family: "Quicksand-SemiBold";
}

.button {
    margin: 10px 20px 30px 20px;
    border: none;
    cursor: pointer;
    font-size: 20px;
    border-radius: 8px;
}

button.android {
    background: url('../img/android-waitlist.png') no-repeat;
    background-size: cover;
    min-width: 180px;
    min-height: 61px;
    height: 61px;
}

button.ios {
    background: url('../img/apple-app-store-badge.png') no-repeat;
    background-size: cover;
    min-width: 180px;
    min-height: 61px;
    height: 61px;
}

a.red {
    color: var(--connect-red);
    text-decoration: underline;
}

h3 {
    color: var(--connect-red);
    margin-top: 0;
    font-size: 16px;
    font-weight: 600;
}

article {
    margin-bottom: 25px;
}

.row {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}


.footer {
    margin-top: 70px;
}

.copyright {
    color: #aaaaaa;
    font-size: 12px;
    margin: 0px 20px 5px 20px;
}

.mobileonly {
    display: none;
}

@media screen and (max-width: 767px) {
    .button {
        margin: 10px 10px 30px 10px;
        border: none;
        cursor: pointer;
        font-size: 20px;
        border-radius: 8px;
    }
    
    .mobileonly {
        display: block;
    }

    button.android {
        min-width: 130px;
        min-height: 44px;
        height: 44px;
    }
    
    button.ios {
        min-width: 130px;
        min-height: 44px;
        height: 44px;
    }

    .circle {
        margin-right: 5px;
    }
}

@media screen and (max-width: 600px) {
    .qrcode {
        display: none;
    }

    .header {
        width: 350px;
    }

    .logo {
        width: 60px;
        height: 60px;
        border-radius: 12px;
    }
    .title {
        font-size: 25px;
    }
    .subtitle {
        font-size: 16px;
    }
}



@media screen and (max-width: 400px) {
    
    .header {
        width: 300px;
    }

    .logo {
        width: 50px;
        height: 50px;
        border-radius: 10px;
        margin-right: 14px;
    }
    .title {
        font-size: 20px;
    }
    .subtitle {
        font-size: 14px;
    }
}
