*{
    margin: 0;
    box-sizing: border-box;
}
span , a , title{
    display: inline-block;
}
img{
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
.big{
    display: flex;
    padding: 50px;
}
.imgbox{
    width: 100px;
    height: 100px;
    border: 2px solid teal;
    border-radius: 5px;
    margin: 0 20px;
    transition: 0.4s;
    overflow: hidden;
    background-color: black;
}
.origin{
    transform-origin: left bottom;
}
.img{
    transition: 0.4s;
}
.img:hover{
    transform: rotate(20deg);
}
.textbox{
    width: 80%;
    font-size: 20px;
}
.box{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}
.p{
    width: 60%;
    display: flex;
}
.link{
    color: red;
    font-weight: bold;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.span{
    font-style: italic;
    color: gray;
}
.span1{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.h1{
    font-family: system-ui;
}
.btnbox{
    text-align: center;
}
.imgbox:hover{
    transform:rotate(-20deg);
}
.btn{
    text-decoration: none;
    color: rgb(103, 103, 103);
    position: relative;
    width: 300px;
    padding: 10px;
    font-size: 20px;
    transition: 0.4s;
}
.btn::after{
    content: '';
    position: absolute;
    background-color: dodgerblue;
    width: 100%;
    height: 5px;
    bottom: 0;
    left: 0;
    transition: 0.4s;
}
.btn:hover::after{
    bottom: 100%;
}
.btn:hover{
    color: dodgerblue;
}