@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;1,300;1,400&display=swap");

body {
	font-family: "Roboto", Arial, Helvetica, sans-serif;
	margin: 0;
	background: #111;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
    justify-content: center;
    gap: 30px;
    align-items: center;
}

.flex-center {
	display: flex;
	justify-content: center;
}

.header-center {
	align-items: center;
	flex-direction: column;
	margin-top: 10%;
}

.left-margin {
	margin: 0px 16px;
}

#sj-frame {
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: #111;
}

.desc {
	width: 560px;
	color: rgba(253, 253, 253, 0.514);
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.desc h1 {
    font-size: 80px;
    color: rgba(0, 128, 0, 0.502);
    transition: all 0.4s ease;
    cursor: pointer;
}

.desc h1:hover {
    transform: translateY(-10px);
    color: green;
}

.desc p {  
    transition: all 0.4s ease;
}

.desc p:hover {
    transform: translateY(-10px);
}

#sj-address {
	background: none;
	font-family: inherit;
	padding: 0px 17px;
	height: 48px;
	border: 1px solid rgb(255, 255, 255, 0.2);
	color: var(--text-color);
	border-radius: 3px;
	outline: none;
	width: 100px;
	margin-top: 5px;
	border-radius: 50px;
	color: #fff;
	transition: all 0.4s ease;
    text-align: center;
    color: gray;
}

#sj-address:hover {
	border: 1px solid rgba(255, 255, 255, 0.649);
}

#sj-address:focus {
    width: 340px;
    color: rgba(245, 245, 245, 0.831);
}
