@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body {
	font-family: "Inter", -apple-system, Roboto, Helvetica, Arial, BlinkMacSystemFont, Segoe UI, sans-serif;
	margin: 0;
	background-color: #fff;
	color: #010101;
	line-height: 1.5;
}

/* Normal  */
.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	max-width: 600px;
  	margin: 0 auto;
}

.inner{
	display: flex;
	margin-bottom: 64px;
	padding: 30px;
}

.line {
	width: 4px;
	background-color: #12CA0E;
	margin: 5px 16px 0 0;
	height: 178px;
}

.content {
	display: flex;
	flex-direction: column;
	text-align: center;
}

img {
	height: auto;
	margin-bottom: 10px;
	max-width: 100%;
}

.message {
	font-size: 18px;
	
}

.portfolio-link {
	font-weight: bold;
	color: #12CA0E;
	text-decoration: none;
}

.portfolio-link:hover {
	text-decoration: underline;
}

/* AI Simulation */
.ai-wrapper{
	max-width: 500px;
	margin: 20vh auto 0;
	text-align: center;
}

.ai-square-icon{
	width: 200px;
	height: 200px;
	margin: 0 auto 16px;
    position: relative;
}

.brand{
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
    font-weight: 900;
    color: #12CA0E;
    position: absolute;
    top: 47%;
    left: 0;
    right: 0;
    z-index: 1;
}

.storm {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  overflow: visible;
}
.storm:before,
.storm:after,
.storm div:before,
.storm div:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border: 2px solid #12CA0E;
  border-radius: 100%;
  -webkit-animation-name: spin;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  box-shadow: 4px 4px 0px 2px #12CA0E;
  opacity: 0.75;
}
.storm:before {
  width: 105%;
  left: -2%;
  top: 2%;
  border-radius: 93% 102% 113% 106%;
  -webkit-animation-duration: 3000ms;
}
.storm:after {
  width: 97%;
  left: 3%;
  top: -1%;
  border-radius: 113% 87% 112% 104%;
  -webkit-animation-name: spin-reverse;
  -webkit-animation-duration: 4000ms;
}
.storm div:before {
  width: 102%;
  left: -4%;
  top: 0%;
  border-radius: 101% 114% 94% 110%;
  -webkit-animation-name: spin-reverse;
  -webkit-animation-duration: 5000ms;
}
.storm div:after {
  left: 1%;
  top: 2%;
  border-radius: 129% 100% 124% 109%;
  -webkit-animation-duration: 6000ms;
}

form {
	text-align: center;
}
button {
	padding: 16px 24px;
	color: #fff;
	background-color: #12CA0E;
	border: none;
	border-radius: 8px;
    border: 1px solid #1d1d1d;
    transition: all .15s ease;
	cursor: pointer;
	margin-top: 32px;
	font-size: 16px;
	font-family: inherit;
    font-weight: 700;
}
button:hover {
	transform: translatey(-2px);
}

.progress {
	text-align: center;
	font-size: 22px;
	padding: 30px;
	transition: opacity 1s ease-in-out;
}

.completion-form{
	padding: 30px;
}

.progress .text{
	font-size: 0.5em;
	font-size: 16px;
}

.progress .domain{
	margin-top: 16px;
	font-size: 28px;
    font-weight: 700;
}

.progress .domain span{
    color: #12CA0E;
}

.fade-in {
	opacity: 1;
}

.fade-out {
	opacity: 0;
}

@-ms-keyframes spin { 
    from { 
        -ms-transform: rotate(0deg); 
    } to { 
        -ms-transform: rotate(360deg); 
    }
}
@-moz-keyframes spin { 
    from { 
        -moz-transform: rotate(0deg); 
    } to { 
        -moz-transform: rotate(360deg); 
    }
}
@-webkit-keyframes spin { 
    from { 
        -webkit-transform: rotate(0deg); 
    } to { 
        -webkit-transform: rotate(360deg); 
    }
}
@keyframes spin { 
    from { 
        transform: rotate(0deg); 
    } to { 
        transform: rotate(360deg); 
    }
}

@-ms-keyframes spin-reverse { 
    from { 
        -ms-transform: rotate(0deg); 
    } to { 
        -ms-transform: rotate(-359deg); 
    }
}
@-moz-keyframes spin-reverse { 
    from { 
        -moz-transform: rotate(0deg); 
    } to { 
        -moz-transform: rotate(-359deg); 
    }
}
@-webkit-keyframes spin-reverse { 
    from { 
        -webkit-transform: rotate(0deg); 
    } to { 
        -webkit-transform: rotate(-359deg); 
    }
}
@keyframes spin-reverse { 
    from { 
        transform: rotate(0deg); 
    } to { 
        transform: rotate(-359deg); 
    }
}