@charset "utf-8";
/* CSS Document */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
*{
		scroll-behavior: smooth;
}
html{
	align-self: center;
}
img{
	width: 20rem;
}
h1{
	color: #002B87;
	font-size:35px;
	font-weight: 600;
	transition: font-size 1.5s ease;
}
h1:hover{
	font-size: 40px;
	transition: font-size 1.5s ease;
}
h2{
	color: #002472;
	font-size: 28px;
	font-weight: 500;
}
body{
	color: #001541;
	margin:0;
	padding:0;
	font-family: "Kanit", sans-serif;
}

.navbar{
	display: flex;
    justify-content: center;
    list-style: none;
    background-color: #003B62;
    gap: 20px;
}
.navbar a {
    color: white;
    font-size: 16px;
    padding: 10px;
    display: inline-block;
	background-color: none;
	transition: background-color 1s ease;
}
.navbar a:hover{
	transition: background-color 1s ease;
	background-color: #001386;
}
header{

}
li{
	list-style: none;
	text-align: center;
}
ul{
	padding: 0;
}
a{
	text-decoration: none;
}
.collumn1{
	padding: 1rem;
	margin: 2rem;
	flex:2;
}
.collumn2{
	padding: 1rem;
	flex:1;
	margin: 2rem;
}
.row{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin:0 -1rem;
    gap: 1rem;
}

footer{
	display: flex;
    justify-content: center;
    list-style: none;
    background-color: #003B62;
    gap: 10px;
}

footer a{
	color: white;
    font-size: 16px;
    padding: 10px;
    display: inline-block;
	background-color: none;
	transition: background-color 1s ease;
}
footer a:hover{
	background-color: #001386;
	transition: background-color 1s ease;
}
footer p{
	color: white;
    font-size: 16px;
    padding: 10px;
	transition: transform 0.5s ease;
}

footer p:hover{
	transform: scale(0.9);
	transition: transform 0.5s ease;
}
.bi{
	font-size: 45px;
	transition: font-size 0.5s ease;
}
.bi:hover{
	font-size: 40px;
	transition: font-size 0.5s ease;
}