@import url('https://fonts.googleapis.com/css2?family=Inconsolata&display=swap');

*{
    margin: 0;
    padding: 0;
}

body{
    background-color: black;
    color: white;
}

.nav {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
    background-color: #333;
    color: #fff;
    padding: 10px;
}

.nav a {
    text-decoration: none;
    background-color: black;
    color: #fff;
    margin: 5px 0;
}

.nav a:hover {
    background-color:#ff9900;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.info{
    flex:1;
    padding:20px;
    font-family: 'Young Serif', serif;
    font-size: 30px;
}

.cartoon img{
    flex:1;
    text-align: center;
    width: 300px;
    height: 300px;
    border-radius: 50%;
}


.circle-container{
    display:flex;
    justify-content: space-around;
    margin-top: 20px;
}

.circle{
    width: 400px;
    height:400px;
    border-radius: 50%;
    background-color: #3498db;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: 'Inconsolata', monospace;
    font-size:20px ;
}
.circle h3{
    background-color:#ff9900;
    font-size: 30px;
}

.circle h3:hover{
    background-color:white;
    color: #ff9900;
}

.circle p{
   text-align: center;
   font-size: 25px;

}

.circle a{
    font-size: 28px;
}

.circle a:hover{
    color: #ff9900;

}


.navbar {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #3498db;
    color: #fff;
}



.menu-icon img {
    cursor: pointer;
    margin-bottom: 10px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 4px 0;
    transition: 0.4s;
}

.menu-options {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #3498db;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

.menu-options a {
    color: #fff;
    text-decoration: none;
    margin: 5px 0;
    transition: 0.2s;
}

.menu-options a:hover {
    color: #ff9900;
}

.toogle{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
   
}

.toogle button{
    width: 90px;
    height: 50px;
}

.color-normal {
    background-color:#3498db;
    color: #fff;
}

.color-alt {
    background-color: #fff;
    color: black;
}

@media (max-width: 1200px) {
    .content {
      margin: 10px 0; 
    }
    .circle{
        font-size: 16px;
        padding: 10px;
    }
  }

  @media(max-width:1000){
    .circle{
    font-size: 12px;
    padding: 12px;
    }
  }