@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: rgb(31, 30, 30);
    height: 100vh;
    background: linear-gradient(to right, #fc8b56, #fd5656);
}

.text-white {
	color: #fff !important;	
}

header.header {
    display: flex;
    justify-content: space-evenly;
	padding-top: 20px;
}

#logo {
	width: 240px;	
}

.container{
    width: 680px;
    text-align: center;
}

.links{
    padding-top: 20px;
	display: flex;
    justify-content: space-evenly;
}

.links .link img {
    max-width: 50px;
}


.links .link a{
    display: flex;
    justify-content: space-evenly;
    text-decoration: none;
}

.links .link {
    background: rgb(230, 230, 230);
    width: 23%;
    display: flex;
    height: 140px;
    margin: 1%;
    align-items: center;
    float: left;
    justify-content: center;
    border-radius: 20px;
    border: 2px solid rgb(230, 230, 230);
    cursor: pointer;
    transition-duration: 0.25s;
    text-decoration: none;
}

.links .link h2 {
	color: #333;
}

.links .link:hover h2 {
	color: #fff;
}

.links .link:hover{
    background: rgb(79, 124, 254) !important;
    border: 2px solid rgb(255, 255, 255);
    color: rgb(255, 255, 255);
}

.links .link a .content{
	align-items: center;
	justify-content: space-between;
	text-decoration: none;
	color: inherit;
	text-align: center;
}

.links .link a .content span {
    text-align: center;
    width: 210px;
}

.subtitle {
    color: #fff;
    font-size: 12px;
}

footer.footer {
    margin: auto;
    text-align: center;
    }

footer.footer,footer.footer a {
	color: #fff;
	font-size: 12px;
	text-decoration: none;
	margin-top: 50px;
}

footer.footer .container {
	margin: auto;
}

.mb-2 {
    margin-bottom: 0.5rem!important;
}

@media (max-width: 1024px){
    .container{
        width: 60%;
    }
}

@media (max-width: 912px){
    .container{
        width: 80%;
    }
}

@media (max-width: 768px){
    .container{
        width: 100%;
    	padding-left: 20px;
		padding-right: 20px;
	}
	.links .link{    
		width: 30%;
        height: 120px;
 }
	.links .link h2 {
		font-size:14px;
	}

}