*{
    padding: 0;
    margin: 0;
}

body{
    margin: 0;
    font-family: 'Segoe Ul', sans-serif;
    color: rgb(255, 251, 0);
    background-color: rgb(8, 8, 8);
    background-image: url(https://mycounter.com.ua/wp-content/uploads/2025/01/ae735c628d11ef2c6f36df7fdab8e7a9.webp);
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: yellow;
    display: flex;
    flex-direction: column;
}

.header{
    background-color:rgb(229, 245, 11);
    padding: 20px 0px;
}

.logo img{
    height: 30px;
}

.header, .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu{
    display: flex;
    align-items: center;
    border-radius: 20px;
    background-color: rgba(248, 211, 4, 0.767);
    padding: 0 50px;
}

.menu li{
    display: flex;
    list-style: none;
    padding: 10px 30px;
}

.menu li a {
text-decoration: none;
font-weight: 700;
color: #000000;
font-size: 18pt;
}

.menu li a:hover{
transition: 0.4;
}

.social-contacts i{
    color: rgb(3, 3, 3);
    transition: 0.4;
    padding: 10px;
}
.social-contacts i:hover{
    color: rgba(248, 203, 4, 0.979);
    transition: 0.8;
}

.skills{
    padding: 60px 0;
    background-color:rgba(0, 0, 0, 0.651);
    text-align: center;
}

.skills hr {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 50px;
    border-color: yellow;
    border-width: 2px;
}

.skills h2{
    font-size: 30pt;
    margin-bottom: 30px;
}

.skill h3 {
    margin-bottom: 10px;
}

.footer .container{
    display: flex;
    flex-direction: column;
}

.footer h2{
    margin: 30px;
}

.footer .menu{
    display: flex;
    flex-direction: row;
    align-items: center;
    color: #000000;
}
.footer i{
    color: rgb(0, 0, 0);
}
.footer h2{
    color: rgb(0, 0, 0);
}
.footer {
    background-color: yellow;
    padding: 60px 0;
    color: black
}

.grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 30px;
}

.hero{
    text-align: center;
    padding: 50xp 0;
}

.hero h1 {
font-size: 48px;
margin: 50px 0;
}

.hero p{
    font-size: 20px;
    margin-bottom: 30px;
}
.hero img {
    width:300px;
}

