
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color:white;
}

.container {
    background-image: url('LK-background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.wrap {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    
}


.header {
    width: 100%;

    display: flex;
    justify-content: center;
    
}

.header_logo {
    width: 160px;
    height: 100px;
}

.box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3rem 0.5rem;
}

.title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin-top: 2rem;
}

.title_bold {
    font-size: 2.5rem;
    margin-bottom: 0.3rem;
    color: #62c1fb;
}


.info {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    padding-top: 2rem;
}

.info_container {
    margin-right: 1rem;
    padding-left: 1rem;
}

.info_title {
    font-size: 1.4rem;
    margin-bottom: 0.2rem;
}

.info_description {
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.cor-name {
    font-size: 3rem;
    text-align: center;
    font-weight: bold;
}
.map_link {
    font-size: 0.8rem;
    text-decoration: none;
    color:#ffa33a;
}


@media screen and (min-width: 322px){
    .box {
        border-radius: 30px;
    }
}

@media screen and (min-width: 480px){
    .box {
        padding: 5rem 5rem;
    }
    .header_logo {
        width: 200px;
        height: 130px;
    }
    .title_normal {
        font-size: 1.1rem;
    }

    .info_title{
        font-size: 1.1rem;
    }
    .info_description {
        font-size: 0.8rem;
    }
    
}


@media screen and (min-width: 846px) {
    .title_bold {
        font-size: 6rem;
    }
    .title_normal {
        font-size: 1.6rem;
    }

    .coming {
        font-size: 5rem;
    }
    

    .info_title{
        font-size: 1.3rem;
    }

    .info_description {
        font-size: 1.3rem;
    }

    .info_container:first-child {
        padding-left: 6rem;
    }

    .info_container:last-child{
        margin-right: 6rem;
    }

    .box {
        border-radius: 30px;
        padding: 6rem 4rem;
    }
    .map_link {
        font-size: 1.2rem;
    }

    .header_logo {
        width: 200px;
        height: 120px;
    }
};

