.con1{
    width: 100%;
    padding: 1rem 20px;
    box-sizing: border-box;
    background-color: white;
    margin-top: 1rem;
}
.conTitle{
    font-size: 3rem;
    color: #71727F;
    font-family: 'Electrolize', sans-serif;
}
.myLink{
    margin: 1rem 0;
}
.newsList{
    display: flex;
    margin-bottom: 2rem;
    justify-content: flex-start;
    align-items: flex-start;
}
.listImg{
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid #7B777B;
    width: 20%;
}
.listImg>img{
    width: 100%;
    display: block;
}
.listText{
    margin-left: 10px;
    width: 79%;
}
.listTitle{
    font-size: 1.5rem;
    color: black;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 0.8rem;
}
.conText{
    font-size: 1rem;
    color: #717274;
    font-family: 'Electrolize', sans-serif;
}
.listImgType{
    width: 25%;
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid #7B777B;
}
.listImgType>img{
    width: 100%;
    display: block;
}
.listTextType{
    width: 74%;
    margin-left: 10px;
}
.bigTitle{
    color: #717278;
    font-size: 2rem;
    font-family: 'Yanone Kaffeesatz', sans-serif;
    margin: 1rem 0;
}
.conText>a{
    color: #02C1F3;
    transition: all 0.3s;
}
.conText>a:hover{
    color: #58AF47;
}
@media screen and (max-width: 768px){
    .newsList{
        display: block;
        margin-bottom: 2rem;
    }
    .listImg,.listImgType{
        width: 50%;
    }
    .listText,.listTextType{
        width: 100%;
        margin: 2rem 0;
    }
    .listTitle{
        font-size: 3rem;
    }
    .conText{
        font-size: 2rem;
    }
}
@media screen and (max-width: 350px){
    .listImg,.listImgType{
        width: 100%;
    }
}
