*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Archivo Narrow", sans-serif;
}

body{
    height: 100vh;
    background-image: url("../img/bg.jpg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Main */
.main{
    display: flex;
    position: relative;
}
    /* Div 1 Left */
    .div-1{
        flex: 8%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .div-1 img{
        height: 30px;
        width: 30px;
        cursor: pointer;
    }

    .div-1 hr{
        height: 16rem;
        margin-bottom: 1rem;
    }

    .nav-btn{
        margin: 1.5rem 0;
    }

    .social{
        margin: 0.2rem 0;
    }

    /* Div 2 Right */
    .div-2{
        flex: 92%;
        height: 100vh;
        margin-right: 4rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        /* Top Div */
        .top-div{
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-div img{
            height: 2rem;
            cursor: pointer;
        }

        .top-div h1{
            font-size: 20.2rem;
            letter-spacing: -1rem;
            padding: 0 2rem;
            color: white;
            mix-blend-mode: overlay;
        }

        /* Bottom Div */
        .bottom-div{
            display: flex;
            width: 85%;
            margin-top: -5rem;
        }

        #more-btn{
            flex: 3;
        }

        #more-btn div{
            display: inline;
            padding: 1.2rem 3.5rem;
            box-shadow: 0px 0px 4px 2px #da0080;
        }

        #more-btn a{
            font-size: 2rem;
            text-decoration: none;
            color: white;
            text-shadow: 2px 2px 4px #da0080;
            vertical-align: middle;
        }

        #info{
            flex: 1;
            color: white;
        }

        #info h2{
            font-size: 1.2rem;
            text-transform: uppercase;
            margin-top: -0.5rem;
            margin-bottom: 0.5rem;
        }

        #info p{
            color: rgba(255, 255, 255, 0.6);
        }

#logo{
    position: absolute;
    height: 2.5rem;
    top: 0;
    right: 0;
    margin: 2rem 2rem 0 0;
}