@font-face {
    font-family: 'Source Code Pro';
    src: url('/contents/SourceCodePro-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Source Code Pro';
    src: url('/contents/SourceCodePro-SemiBold.ttf');
    font-weight: 500;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: 'Source Code Pro';
    line-height: 1.5rem;
    font-weight: 400;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    
    overflow-x: hidden;
}

b {
    font-weight: 500;
}

.container {
    display: flex;
    min-height: 100vh;
    width: 100vw;
}

.left-col {
    width: 50%;
    background-color: #0145f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contents {
    width: 80%;
    padding: 15px;
}

.logo {
    margin: 50px 0;
}

.contents p {
    color: #fff;
}

.waitlist-div {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.waitlist {
    display: inline-block;
    background-color: #00e4ff;
    color: #002328;
    padding: 5px 40px;
    margin: 30px 0;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

.kvkk-link {
    color: #fff;
}

.right-col {
    width: 50%;
    min-height: 100vh;
    overflow: hidden !important;
    background: url(contents/bg-img.png) no-repeat center;
    background-size: cover;
}

.kvkk {
    max-width: 1400px;
    padding: 15px;
}

.kvkk-logo {
    margin:50px 0;
}

@media only screen and (max-width:1300px) {
    .left-col {
        width: 60%;
    }

    .contents {
        width: 100%;
    }

    .right-col {
        width: 40%;
    }
}

@media only screen and (max-width:900px) {
    * {
        line-height: 1.5rem;
    }

    .container {
        display: flex;
        flex-direction: column-reverse;
    }

    .contents {
        width: 100%;
    }

    .logo {
        width: 250px;
    }

    .waitlist-div {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .waitlist {
        display: inline-block;
        padding: 5px 30px;
        font-size: 18px;
    }

    .kvkk-logo {
        width: 250px;
    }

    .left-col {
        width: 100%;
        height: auto;
    }

    .right-col {
        width: 100%;
        min-height: 400px;
    }

    .kvkk {
        max-width: 1400px;
        padding: 30px 15px;
    }
}