@charset "utf-8";

.box {
    background-color: #00ccff;
    height: 200px;
    width: 200px;
    border-bottom: 3px solid #ff0000;
    margin-top: 40px;
    margin-left: 10px;
    padding: 30px;
    text-align: center;
}

.text1 {
    font-size: 20px;
    line-height: 10px;
    text-align: center;
}

.text2 {
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.box:hover {
    background-color: #3399cc;
}

.circle {
    background-color: #ffcc00;
    height: 200px;
    width: 200px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    box-shadow: 4px 4px 10px 2px #d0cec6;
    background: linear-gradient(45deg, #ffcc00, #ff6600);
}