@charset "UTF-8";

/*
Theme Name: Twenty Twenty-One
Theme URI: https://wordpress.org/themes/twentytwentyone/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Twenty-One is a blank canvas for your ideas and it makes the block editor your best brush. With new block patterns, which allow you to create a beautiful layout in a matter of seconds, this theme’s soft colors and eye-catching — yet timeless — design will let your work shine. Take it for a spin! See how Twenty Twenty-One elevates your portfolio, business website, or personal blog.
Requires at least: 5.3
Tested up to: 6.3
Requires PHP: 5.6
Version: 1.9
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: twentytwentyone
Tags: one-column, accessibility-ready, custom-colors, custom-menu, custom-logo, editor-style, featured-images, footer-widgets, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready

Twenty Twenty-One WordPress Theme, (C) 2020 WordPress.org
Twenty Twenty-One is distributed under the terms of the GNU GPL.
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*,html,body {
    margin: 0 ;
    padding: 0 ;
    box-sizing: border-box ;
    font-family: 'Montserrat', sans-serif;
}

.asp {
    position: relative;
    width: 100%
}

.asp.contain img {
    object-fit: contain
}

.asp.cover img {
    object-fit: cover
}

.asp img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%
}

.asp-3-1 {
    padding-bottom: 33.3333333333%
}

.asp-4-1 {
    padding-bottom: 25%
}

.asp-2-1 {
    padding-bottom: 50%
}

.coming-soon-container{
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    max-width: 1928px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 100px;
}

.coming-soon-container .background-container{
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
}
.coming-soon-container .background-container img{
    object-fit: cover;
    width: 100vw;
    height: 100vh;
}

.coming-soon-container .content{
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    color: white;
    z-index: 10;
}
.coming-soon-container .content h1{
    font-size: 42px;
    font-weight: bold;
    text-align: center;
}
.coming-soon-container .content h2{
    font-size: 42px;
    text-align: center;
}
.coming-soon-container .logo img{
    width: 100%;
    height: 100%;
}
@media (max-width: 1024px) {
    .coming-soon-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .coming-soon-container .logo{
        max-width: 80%;
    }
    .coming-soon-container .content {
        gap: 20px;
    }
    .coming-soon-container .content h1{
        font-size: 22px;
        font-weight: bold;
    }
    .coming-soon-container .content h2{
        font-size: 22px;
    }
}