/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Mar 11, 2021, 8:41:51 AM
    Author     : Kelechi
*/

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
/* geaneral styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Noto Sans JP", sans-serif;
}
/* HERO SECTION */
.toolbar {
    display: flex;
    justify-content: space-between;
    padding: 30px;
}
.signup {
    color: #000;
}
h1 {
    font-size: 4.5vw;
    margin-top: 10%;
    letter-spacing: 4px;
}
.btn {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    font-family: inherit;
    transition: all 0.3s;
}

.btn-black {
    background-color: #000;
    color: #fff;
    padding: 1rem 2rem;
    margin-right: 2rem;
}

.btn-transparent {
    color: #000;
    font-size: 1.3rem;
}
.button-group {
    padding-top: 3rem;
}
.App-header {
    width: 100%;
    justify-content: space-between;
    display: flex;
    height: 100%;
    min-height: 100%;
    align-items: stretch;
    flex-wrap: wrap;
    position: relative;
}
.flex-item-1 {
    padding-bottom: 2rem;
    min-height: 100vh;
}
.flex-item-1 {
    flex: 0.55;
}
.flex-item-1 .container {
    width: 80%;
    margin-left: auto;
}
.container .image-art {
    padding-right: 2rem;
    text-align: end;
    margin-top: 2rem;
}
.container .image-art img {
    width: 200px;
    height: 200px;
}
.flex-item-2 {
    background-color: black;
    color: #fff;
    flex: 0.45;
    padding: 2rem;
    min-height: 100vh;
}
.flex-item-2 .background-image {
    background-image: url("../img/image2.jpg");
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}
.flex-item-2 > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .flex-item-1 {
        flex-grow: 1;
    }
    h1 {
        font-size: 10vw;
    }
    .flex-item-2 {
        display: none;
    }
    .flex-item-1 .container {
        width: 100%;
        display: grid;
        height: 70%;
        place-content: center;
    }
    .container {
        padding-top: 3rem;
    }
    .container .image-art {
        text-align: center;
    }
}
