@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: rgba(184, 155, 124, 0.5); /* #b89b7c80 */
}
::selection {
    background: rgba(76, 110, 99, 0.5); /* #4c6e63 */
    color: rgba(20, 28, 44, 0.8); /* #141c2dcc */
}
::-moz-selection {
    background: rgba(76, 110, 99, 0.5); /* #4c6e63 */
    color: rgba(20, 28, 44, 0.8); /* #141c2dcc */
}

/* part one */
.banner {
    /* z-index:1000; */
    width: 99.55%;
    height: 45vh;
    border-radius: 10px;
    background-color: rgba(230, 202, 172, 0.45); /* #e6caac73 */
    margin: 3px;
    overflow: hidden;
    background-image: ;
}

.topic a {
    position: relative;
    top: 50px;
    left: 20px;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 800;
    font-size: 40px;
    color: rgba(20, 28, 44, 0.8); /* #141c2dcc */
}
.topic {
	/* height: 50px; */
	overflow: hidden;
}
.topic > div > a{
	padding: 4px 12px;
	height: 45px;
	margin-bottom: 45px;
	display: inline-block;
}
@keyframes flow {
	0% {marign-top: -270px;}
	5% {margin-top: -90px;}
	33% {margin-top: -90px;}
	38% {margin-top: -45px;}
	66% {margin-top: -45px;}
	71% {margin-top: 0px;}
	99.99% {margin-top: 0px;}
	100% {margin-top: -270px;}
}
.topic div:first-child {
    animation: flow 5s linear infinite;
}

/*part two*/
.project {
	display: flex;
	flex-direction: column;
	gap: 2px 0;
}
.blocks {
	display: flex;
	width: 90%;
	padding: 12px 10px;
	border-radius: 12px;
}
.title {
	flex: 12%;
	margin-left: 25px;
	font-family: "Space Grotesk", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	font-style: normal;
	font-size: 30px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}
.paragraph {
    flex: 40%;
    padding: 5px 25px;
    background-color: rgba(245, 245, 246, 0.75); /* #f5f5f6bf */
    border-radius: 20px;
}
.paragraph h3 {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-size: 30px;
}
.paragraph p {
    position: relative;
    bottom: 20px;
    margin: 10px 20px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 1.25;
}
.explore {
    position: relative;
    display: inline-block;
    bottom: 8px;
    margin: 5px 15px;
    padding: 8px 25px;
    border-radius: 2px;
    background-color: rgba(230, 224, 219, 0.4); /* #e6e0db66 */
    font-family: "Space Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    color: inherit;
}
.explore:hover .point {
    transform: translateX(8px);
}
.link {
    color: inherit;
    text-decoration: none;
}
.point {
	margin-left: 2px;
    color: inherit;
    text-decoration: none;
	display: inline-block;
	transition: 0.25s ease-in-out;
}
.link a {
  text-decoration: none;
  color: inherit;
}
/*code*/
#code {
    background-color: rgba(74, 76, 84, 1); /* #4a4c54 */
}
#code .title {
    color: rgba(245, 245, 246, 0.5); /* #f5f5f680 */
}
#code h3 {
    color: rgba(74, 76, 84, 1); /* #4a4c54 */
}
#code p {
    color: rgba(123, 149, 166, 1); /* #7b95a6 */
}
#code .pj {
    font-weight: 700;
    color: rgba(184, 155, 124, 1); /* #b89b7c */
}
#code .explore {
  border: 2px solid rgba(74, 76, 84, 1); /* #4a4c54 */
  color: rgba(74, 76, 84, 0.8); /* #4a4c54cc */
}
/*design*/
#design {
    background-color: rgba(179, 89, 49, 1); /* #b35931 */
}
#design .title {
    color: rgba(230, 223, 215, 0.5); /* #e6dfd780 */
}
#design h3 {
    color: rgba(179, 89, 49, 1); /* #b35931 */
}
#design p {
    color: rgba(200, 146, 99, 1); /* #c89263 */
}
#design .explore {
    border: 2px solid rgba(179, 89, 49, 1); /* #b35931 */
    color: rgba(179, 89, 49, 0.8); /* #b35931cc */
}