@import url('https://fonts.googleapis.com/css2?family=Poppins: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&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body{
    background-color: #1E1E1E;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-container{
    display: flex;
    flex-direction: column;
    text-align: center;
    max-width: 1240px;
    margin: 0 auto;
    flex: 1;
}

.header-logo{
    display: flex;
    justify-content: center;
    padding: 90px 0px 20px 0px;
}

.header-logo > figure > img{
    max-width: 113px;
}

.widget{
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 600px;
    padding: 20px;
}

.widget > a{
    text-decoration: none;
    cursor: pointer;
}

.widget-btn{
    margin-bottom: 20px;
    padding: 30px;
    background-color: #151515;
    border-radius: 14px;
    color: white;
    border: 1px solid #2b2b2bc0;
    transition: ease 0.5s;
}

.widget-btn:hover{
    background-color: #242424;
}

.widget-btn > .btn{
    display: flex;
    text-align: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn > h2{
   font-size: 19px;
   font-weight: 600;
}

#icon{
    display: flex;
    max-width: 41px;
}

p{
    color: rgba(255, 255, 255, 0.418);
}

footer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 60px;
    background-color: #151515;
}

footer > p{
    color: white;
    font-size: 12px;
}