:root{
    --bg-color: #2a2a2a;
    --primary-color: #01c38d;
    --primary-2-color: #009394;
    --primary-3-color: #006270;
    --secondary-color: #696e79;
    --tertiary-color: #ffffff;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    user-select: none;
}

body{
    min-height: 100vh;
    max-width: 100%;
    background-color: var(--bg-color);
}

header{
    padding: 20px;
    border-bottom: 0.5px solid var(--secondary-color);
}

header button{
    padding: 10px 15px;
    border-style: none;
    background-color: var(--primary-2-color);
    color: var(--tertiary-color);
    font-size: 8pt;
    letter-spacing: 1px;
    border-radius: 5px;
}

header button a{
    text-decoration: none;
    color: var(--tertiary-color);
}

main{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 50px 0;
}

.image-logo{
    height: 100px;
    width: 100px;
    background-image: url(./mdaj.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: scale-in-center 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.btns ul{
    list-style: none;
}

.btns ul li{
    border:1px solid var(--primary-3-color);
    border-radius: 8px;
    margin: 20px 0;
}

.btns ul li:hover{
    background-color: var(--primary-3-color);
}

.btns ul li a{
    color: var(--tertiary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    font-weight: 500;
}

.btns ul li a span{
    padding: 10px 15px;
}

.fa-solid, .fa-brands{
    font-size: 18pt;
}

.fa-facebook{
    color: #3b5998;
}

.fa-instagram{
    color: #d62976;
}

.fa-twitter{
    color: #00acee;
}

.fa-youtube{
    color: #c4302b;
}

.title{
    border-left: 1px solid var(--secondary-color);
    font-size: 10pt;
    font-weight: 200;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

footer p{
    color: var(--secondary-color);
    font-weight: 200;
    letter-spacing: 1px;
    font-size: 10pt;
}

.a{
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.b{
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.2s both;
}

.c{
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.4s both;
}

.d{
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.6s both;
}

.e{
    -webkit-animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
    animation: slide-in-top 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.8s both;
}