@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}
.box{
    width: 500px;
}
.box .btn{
    width: 100%;
    height: 50px;
    margin-bottom: 10px;
    border: 1px solid #00c3ff;
    background-color: rgb(141, 223, 255);
    border-radius: 50px;
    font-size: 20px;
}
.box img{
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}
.box p{
    width: 100%;
    height: 50px;
    text-align: center;
    font-size: 30px;
    border: 1px solid #00c3ff;
}

