*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: sans-serif;
    /* background-color: black; */
}
h1{
    /* color: white; */
    text-align: center;
    margin-bottom: 40px;
}
.form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50vw;
    margin: auto;
}
.form input{
    background-color: transparent;
    border: none;
    border-bottom: 1px solid black ;
    width: 100%;
    margin: auto;
    font-size: 24px;
    outline: none;
    /* color: white; */
}
.form button{
    border: none;
    background-color: greenyellow;
    margin-top: 16px;
    padding: 8px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}
.ctx{
    width: 80%;
    margin: 40px auto;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 16px;
    display: flex;
    justify-content: space-around;
}
.ctx div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.ctx h2{
    font-size: 40px;
}
.ctx p, .ctx a{
    font-size: 24px;
}
.infos{
    display: flex;
}
.infos img{
    width: 180px;
    border-radius: 50%;
    padding: 8px;
    border: 1px solid #ccc;
}
.repo{
    width: 80%;
    border: 1px solid #ccc;
    padding: 30px;
    border-radius: 4px;
    margin: 32px auto;
}
.repo h2{
    font-size: 32px;
    text-align: center;
}
.repo hr{
    width: 30%;
    margin: 0 auto 32px;
}
.repo p{
    font: size 18px;
    margin-bottom: 8px
}
footer{
    height: 80px;
    text-align: center;
}
@media screen and (max-width:320px){
   .ctx{
    width: 100%;
    display: block;
   }
    .repo{
        width: 100%;;
    }
    .repo h2{
        font-size: 16px;
    }
    .repo p{
        font-size: 14px;
        word-wrap: break-word;
    }
}