* {
    /* font-family: 'Montserrat', sans-serif; */
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: white;
    font-size: 10px;
}

html, body {
	width: 100%;
    height: 100%;
    
    margin: 0px;
    padding: 0px;
    font-family: "Outfit", sans-serif;
    background-color: white;
    overflow: hidden;
}

h1{
    font-family: "Outfit", sans-serif;
    font-size: 8.6rem;
    line-height: 8.2rem;
    font-weight: 600;
    color: #8446a1;
    letter-spacing: -3px;
    margin: 0;
    margin-top: 20px;
}

h2{
    font-family: "Outfit", sans-serif;
   font-size: 2.4rem;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
}

p{
    font-family: "Outfit", sans-serif;
    font-weight: 300;
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.h1-sm{
    font-size: 5rem;
    margin: 15px 0;
    letter-spacing: -1px;
    margin-top: 40px;
}

.container {
    height: 100%;
    overflow: auto;
}

.back-colour{
    position: relative;
    width: 100%;
    /* background: linear-gradient(to bottom, white 0%, #f2f8fc 100%); */
    background: linear-gradient(to bottom, white 0%, #f2f8fc 100%);
}

.iso-house{
    content: url("../img/ios-house.png");
    position: absolute;
    bottom: -190px;
    right: 10vw;
    width: 400px;
    height: 400px;
    z-index: 999;
    opacity: 0;
}

.content {
    /* background-color: #212121; */
    color: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    opacity: 0;
}

.half-cont{
    width:50%;
    text-align: left;
}

.twothird-cont{
    width:70%;
    text-align: left;
}

#intro.content{
    opacity:1;
}

.textblock {
    text-align: left;
    margin-bottom: 40px;
}

.btn-large{
    display: block;
    font-size: 1.8rem;
    min-width: 300px;
    padding: 10px 40px;
    margin-bottom: 10px;
    transition: .2s ease all;
    text-align: center;
    text-decoration: none;
    background: #666;
    color: #fff;
    border-radius: 40px;
    border: none;
}

.btn-blue{
    background: #3957c9;
    border: 1px solid #3957c9;
}

.btn-blue:hover{
    background: #8446a1;
    border: 1px solid #8446a1;
}

.btn-purple{
    border: 1px solid #8446a1;
    background: white;
    color: #8446a1;
    /* color: #fad143; */
}

.btn-purple:hover{
    background: #8446a1;
    color: white;
}

#avatar-select{
    display: flex;
    align-items: center;
}

.avatar-box {
    width: 100px;
    height: 100px;
    margin: 10px;
    background-color: white;
    /* display: inline-block; */
    border: 6px solid #e5f4f9;
    transition-duration: 0.4s;
}

.avatar-box:hover {
    border: 6px solid #8446a1;
    /* border: 6px solid lightslategray; */
}

.avatar-box img{
    width:100%;
    height:100%;
}

.pick-avatar {
    opacity: .5;
    pointer-events: none;
}

.back-btn{
    width: 40px;
    height: 40px;
    border-radius: 200px;
    border: none;
    opacity: .5;
    transition-duration: .6s;
}

.back-btn:hover{
    opacity: 1;
    border: none;
}

.topbar {
    width: 100%;
    background-color: #8446a1;
    padding: 0 !important;
}

.topbar-inner{
    max-width: 700px;
    background-color: #8446a1;
    padding: 12px 0;
    margin: 0 auto;
    text-align: right;
    display: flex;
    justify-content: space-between;
}

topbar-item{

}

.topbar-inner p, .topbar-inner a{
    font-size: 1.5rem;
    color: #fad143;
    padding: 0;
    margin: 0;
}

.topbar-inner a{
    cursor: pointer;
    font-weight: 600;
}

@media only screen and (max-width: 1000px) {
    .iso-house {
        width: 360px;
        height: 360px;
        right: 5vw;
    }
}

@media only screen and (max-width: 800px) {

    h1{
        font-size: 6rem;
        letter-spacing: -1px;
        line-height: 5.6rem;
    }

    .half-cont {
        width: 100%;
    }

    .twothird-cont {
        width: 100%;
    }

    .content {
        margin: 0 auto;
        padding: 40px 40px;
        padding-bottom: 80px;
        text-align: center;
        opacity: 0;
    }

    .iso-house {
        bottom: -180px;
        width: 300px;
        height: 300px;
    }

    .h1-sm {
        font-size: 3.4rem;
        margin: 6px 0;
        letter-spacing: 0;
        margin-top: 25px;
    }

    .avatar-box {
        width: 13vw;
        height: 13vw;
        margin: 1px;
        border: 4px solid #e5f4f9;
    }

    .avatar-box:hover {
        border: 4px solid #8446a1;
    }

    .back-btn{
       width: 8vw;
        height: 8vw;
        margin-left:2vw;
        opacity: .8;
    }

    .back-colour{
        background: linear-gradient(to bottom, white 0%, #f2f8fc 100%);
    }

    .topbar-inner{
        max-width: 80vw;
    }
}

@media only screen and (max-width: 600px) {
    .iso-house {
        bottom: -220px;
    }
}