body{
    background-color: rgb(34, 34, 34);
    color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    max-width: 1200px; 
    margin: 0 auto;
    padding: 15px;
}


#title{
    margin-top: 10px;
    margin-bottom: 10px;
    color: rgb(2, 117, 194);
    flex-direction: column;
    line-height: 1px;
}

h1{
    border: 2px solid rgb(247, 246, 246);
    padding: 35px;
    border-radius: 10px;
    margin-left: 10px;
    margin-top: 40px;
    font-size: 35px;
    line-height: 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

span{
    
    color: rgb(2, 117, 194);
}

main{
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    padding-bottom: 150px;
}


header{
    padding-bottom: 50px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

li{
    font-size: 20px;
    display: inline-block;
    margin: 10px;
}

a{
    color: white;
}

a:hover li{
    color: rgb(2, 117, 194);
    transition: 0.2s all;
    transform: scale(1.15);
}

h2{
    margin-top: 60px;
    font-size: 25px;
}

p{
    text-indent: 30px;
    margin-top: 2px;
    font-size: 18px;
    line-height: 27px;
    max-width: 950px;
    font-family: Arial, Helvetica, sans-serif;
    
}

.footer-social{
    text-align: center;
    padding: 2px 0;
}

.social-links{
    display: flex;
    justify-content:center;
    gap: 10px;
    padding-bottom: 10px;
}

.social-links a img{
    padding-top: 10px;
    max-width: 35px;
    height: auto;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover img{
    transform: scale(1.15);
    opacity: 0.8;
}

.footer-copright{
    border: 2px solid rgb(8, 8, 8);
    padding: 1px;
    border-radius: 1px;
    width: 100%;
    text-align: center;
    background-color:  rgb(24, 24, 24);
    color: #888888;
    font-size: 11px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 2px;
}