@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
    --primary-color: #ffffff;
    --secondary-color: #000000;
    --button-color: #ededed;
    --button-text-color: #000000;
	--accent-color: #00abf0;
	--logo-color: #ABF000;
}

.dark-theme {
    --primary-color: #121212;
    --secondary-color: #ffffff;
    --button-color: #343434;
    --button-text-color: #ededed;
	--accent-color: #b072fc;
	--logo-color: #72FCB0;
}

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

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    color: var(--secondary-color);
    background: var(--primary-color);
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header {
    position: absolute;
    top: 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 23px;
    font-weight: 750;
    color: var(--button-text-color);
    line-height: 50px;
    background: linear-gradient(90deg, var(--accent-color), var(--logo-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.box-settings {
    display: flex;
    background: var(--button-color);
    border: 2px solid var(--button-color);
    border-radius: 8px;
    color: var(--button-text-color);
    overflow: hidden;
    transition: .5s;

}

.box-settings a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 30px;
    font-size: 18px;
    color: var(--button-text-color);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.box-settings a:hover,
.box-settings a:focus {
    color: var(--accent-color);
}

#icon {
    border-right: 2px solid var(--primary-color);
}

#language-icon {
    font-weight: 500;
}

.home {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 90%;
    padding: 20px;
    overflow: auto;
    max-width: 75vh;
} 

.home-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/*

.home-content h1 {
    position: relative;
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 15px;
}

*/

.home-content h1, .home-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
}

.home-content h1 {
	height: 20%
	
}

.home-content p {
    font-size: 16px;
    text-align: justify;
    max-width: 400px;
    margin: 0 0 75px 0;
}

.home-content h2 {
	height: 60%
}

.home-content .btn-box {
    position: relative;
    display: flex;
    height: 50px;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0px 0px 25px;
}

.btn-box a {
    position: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 275px;
    height: 100%;
    background: var(--button-color);
    border: 2px solid var(--button-color);
    border-radius: 8px;
    font-size: 19px;
    color: var(--button-text-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.btn-box a:hover,
.btn-box a:focus {
    color: var(--accent-color);
}

.home-content .crc-hyp {
    position: relative;
    display: flex;
    height: 50px;
    align-items: center;
    text-align: center;
    justify-content: center;
    gap: 25px;
}

.crc-hyp a {
    position: center;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: var(--button-color);
    border: 2px solid var(--button-color);
    border-radius: 50%;
    font-size: 28px;
    color: var(--button-text-color);
    text-decoration: none;
    z-index: 1;
    overflow: hidden;
    transition: .5s;
}

.crc-hyp a:hover,
.crc-hyp a:focus {
    color: var(--accent-color);
}

.footer {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    background-color: var(--primary-color);
    position: absolute;
    bottom: 0;
}

.footer f1 {
    font-size: 12px;
    text-align: center;
    text-decoration: none;
}
