/*
Theme Name: Dynamic QR-Code VCF
Author: markus.cdy
Version: 1.1
*/


/* GENERAL SETTINGS */

:root {
  --system-ui: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}


* {
	margin: 0;
	padding: 0;
 	box-sizing: border-box;
	
	font-family: var(--system-ui);
}

.actual--info, .hidden{
	display: none;
}

main{
	width: 100%;
	overflow-x: hidden;
	height: 100vh;
}

h1{
	font-size: 30px;
}
h2{
	font-size: 18px;
	font-weight: 400;
}
h3{
	font-size: 15px;
	font-weight: 400;
}

a{
	text-decoration: none;
}

#PHOTO{
	height: 10rem;
	width: 10rem;
	border-radius: 50%;
	margin: 50px calc(100% / 2 - 5rem) 20px;
	object-fit: cover;
}

.name--container{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.name{
	display: flex;
	gap: 6px;
	margin-bottom: 5px;
}

#ADD{
	height: 3.5rem;
	width: calc(100% - 200px);
	margin: 25px auto;
	border: none;
	outline: none;
	border-radius: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	cursor: pointer;
}
#ADD i {
	font-size: 18px;
}

.social--media--container{
	height: 3rem;
	width: 100%;
	margin: 25px 0 40px;
	padding: 0 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 1.5rem;
}

.social--media--container .icon--ellipse{
	height: 50px;
	width: 50px; 
	border-radius: 50%;
	display:flex;
	align-items: center;
	justify-content: center;
}

section{
	height: auto;
	width: 100%;
	padding: 0 20px;
}

section div a button{
	height: 3.5rem;
	width: 85%;
	padding: 0 35px;
	margin: 1rem auto;
	border: none;
	border-radius: 25px;
	outline: none;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

section div a button i{
	font-size: 18px;
	margin-right: 1rem;
}

.cta{
	display: flex;
	align-items: center;
	gap: 6px;
	white-space: nowrap;
}

.cta p, section div a button p, #ADD p{
	font-size: 15px;
}

.cta .mini-text {
	font-size: 11.5px;
}

#logo-bottom{
	display: block;
	width: 60vw !important;
	margin: 10vh auto ;
}