html, body {
    box-sizing: border-box;
    overflow-x: hidden;
    margin: 0;
}

header {
    box-shadow: 0px 0px 50px 0px #eef;
}

header .right {
    display: flex;
    align-items: center;
}

header .right img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    object-fit: cover;
}

main .btns>a {
    margin-bottom: 15px;
}

main .circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 250px;
    height: 250px;
    margin-left: 40px;
    border-radius: 50%;
    box-shadow: 0px 0px 15px 5px #ddd;
    transition: all 300ms;
}

main .circle:hover {
    box-shadow: 0px 0px 25px 5px #c2d6f5;
    transform: scale(1.01);
    transition: all 300ms;
}

main .about-btn{
    margin-top: -50px !important;
}

main .pub {
    width: 350px;
    border-radius: 10px;
    box-shadow: 0px 0px 50px 0px #eef;
}

main .pub img {
    width: 100%;
    border-radius: 10px;
}

footer {
    display: flex;
    align-items: center;
    padding: 10px 0px;
    box-shadow: 0px 0px 50px 0px #eef;
}

.log-form {
    width: 400px;
    margin: 30px auto 0px;
    box-shadow: 0px 0px 5px 1px #eef;
    padding: 30px;
    border-radius: 10px;
}

.log-form label {
    display: block;
    margin-bottom: 15px;
}

.view-card {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.view-card .card-container {
    width: 600px;
    height: 280px;
    background-color: #fff;
}

.view-card button {
    margin-top: 20px;
    padding: 5px 25px;
    background-color: #c70808;
}