@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-image: url(background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

header {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
}

.head-name {
    color: blue;
    font-family: 'Montez', cursive;
    font-size: 45px;
}

.sub-name {
    font-family: 'Ubuntu Mono', monospace;
    font-size: 20px;
}


.btn-center {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

div button {
    font-size: 20px;
    padding: 8px 30px;
    background-color: orange;
    color: black;
    text-decoration: none;
    border-color: white;
    position: relative;
    cursor: pointer;
}


/* popup */

.popup,
.popup2,
.popup3 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.0);
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.popup-content,
.popup2-content,
.popup3-content {
    background-color: #fff;
    padding: 20px;
    margin: 10% auto;
    width: 25%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}



.popup3-content {
    background-color: #fff;
    padding: 20px;
    margin: 3% auto;
    width: 87%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    position: relative;
}



.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 35px;
    cursor: pointer;
    color: rgb(133, 131, 131);
    font-weight: bold;
}



/* head button properties */
#show-popup,
#show-popup2 {
    padding: 8px 25px;
    background-color: blue;
    color: #fff;
    border-color: #fff;
    cursor: pointer;
    text-decoration: none;
    font-size: 20px;
}



#show-popup:hover {
    background-color: #0056b3;
}


hr {
    border-radius: 5px;
}

label {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: left;
    font-size: 18px;
}

input {
    width: 100%;
    padding: 10px 8px;
    margin: 10px 0;
    display: inline-block;
    background-color: rgb(236, 230, 230);
    text-decoration: none;
    border: 0;
}

.popup-heading,
.signin-head,
.create-post-head {
    text-align: left;
    color: rgb(133, 131, 131);
}

textarea {
    width: 100%;
    background-color: rgb(236, 230, 230);
    height: 450px;
    padding: 12px 20px;
    border: 0;
    text-decoration: none;
}

#inside-btn-create {
    margin-top: 25px;
    padding: 8px 50px;
    background-color: rgb(38, 122, 38);
    color: #fff;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

input:hover {
    border-color: #0056b3;
}


#inside-btn-signin,
#inside-btn-signup {
    width: 100%;
    margin-top: 25px;
    padding: 8px 25px;
    background-color: rgb(38, 122, 38);
    color: #fff;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}

.member {
    font-weight: 600;
    margin-top: 25px;
}

#showSignUp {
    font-weight: 600;
    font-style: normal;
}

.inside-btn-create {
    margin-top: 25px;
    padding: 8px 25px;
    background-color: rgb(38, 122, 38);
    color: #fff;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    font-size: 15px;
}