*{
    padding: 0;
    margin: 0;
}

body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    color: black;
    background-color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    color: black;
    display: flex;
    flex-direction: column;

}



.header {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 20px 0px;
    background-color: black;
}

.logo img {
    height: 50px;

}

.header, .container {
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.menu {
    
    display: flex ;
    align-items: center ;
    border-radius: 20px;
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0 50px;
}

.menu li {
    display: flex;
    list-style: none;
    padding: 10px 30px;
}

.menu li a {
     text-decoration: none;
     font-weight: 700;
     color: black  ;
     font-size: 18pt;
}
.menu li a:hover {
    color: rgb(128, 128, 128);
    transition: 0.4;
}

.social-contacts i {
color: rgb(255, 0, 0);
font-size: 20pt;
padding: 10px;
}
.social-contacts i:hover {
    color: yellow;
    transition: 0.8;
}

.hero {
    text-align: center;
    padding: 50px 0;
    background-image: url();
    height: 100%;
    background-color: yellow;

}


.s1 {
    height: 200px;
}

.hero h1{
    font-size: 48px;
    margin-bottom: 20px;
}


.hero p {
    color: rgb(107, 107, 107);
}



.skills {
    padding: 60px 0;
    background-color:rgb(0, 0, 0) 
    ;
    text-align: center;
}


.skills h2 {
font-size: 30pt;
margin-bottom: 30pt;

}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    gap: 30px ;
}


.skill h3 {
    margin-bottom: 10px;
}

.skill {
    background-color: yellow;
    border-radius: 6    px;
    padding: 30px 20px ;
    height: 300px;
    box-shadow: 4px 4px 5px 3px gray;
}



.footer h2 {
    margin: 60px 0 ;
    color: rgba(150, 150, 150);
}

.footer .menu {
display: flex;
flex-direction: row;
align-items: center;
background-color: gray;
color: rgba(150, 150, 150);

}













 
.radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  border-radius: 0.5rem;
  background-color: yellow ;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 300px;
  font-size: 14px;

}

.radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
}

.radio-inputs .radio input {
  display: none;
}


.name {
  text-decoration: none;
}

.radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: none;
  padding: .5rem 0;
  color: rgba(51, 65, 85, 1);
  transition: all .15s ease-in-out;
  
}

.radio-inputs .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
}




.name {
  background-color: yellow;
}




.footer {
  background-color: black;
  color: #E0E1DD;
  padding: 3rem 0 1rem;
  font-family: "Inter", sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 250px;
  margin: 1rem 0;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #E0E1DD;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #ADB5BD;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #00B4D8;
  text-decoration: underline;
}

.social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: #1B263B;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #E0E1DD;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: #00B4D8;
  color: #0D1B2A;
}

.footer-bottom {
  text-align: center;
  padding-top: 1rem;
  font-size: 0.9rem;
  color: #868E96;
}

