* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background-color: rgb(255, 255, 255);
    color: #000000;
}

.header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 77, 77, 0);
    padding: 20px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-name {
    display: flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: rgb(0, 0, 0);
    font-family: "Nunito Sans";
    font-size: 21px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.navbar a {
    text-decoration: none;
    margin-left: 25px;
    color: #000000;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: -0.8px;
text-transform: uppercase;
}

.subscribe {
    padding: 5px 10px;
align-items: center;
border-radius: 20px;
border: 1px solid #000000;
}

.navbar-logo {
    width: 25px;
    height: 22.725px;
}

.footer-container-pictures {
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 0vh 62px;
    margin-top: 10vh;
}

.copyright {
    display: inline-flex;
align-items: flex-start;
gap: 20px;
padding: 10px 62px;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.copyright a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.footer-text-container {
    display: flex;
    justify-content: space-between;
}

.socials {
    display: flex;
gap: 20px;
padding: 10px 62px;
}

.socials a {
    text-decoration: none;
    color: #000000;
font-family: "Work Sans";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
text-decoration-line: underline;
}

.article-head {
    max-width: 54.375rem;
    margin: 0 auto;

}

.article-head h1 {
    color: #000;

    font-family: Merriweather;
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    padding: 1vh 0vh;
}

.article-header img {
    display: block;
    width: 100%;
    height: auto;
}

.article-head h3 {
    color: #000;
font-family: Archivo;
font-size: 1.6875rem;
font-style: normal;
font-weight: 500;
line-height: normal;
text-align: left;
padding: 1vh 0vh;
}


.article-break img {
    display: block;
    width: 100%;
    height: auto;
    padding: 1vh 62px;
}

.date-author {
    display: flex;
    padding: 0vh 62px;
    gap: 1vh;
    color: #000;
font-family: Archivo;
font-size: 1rem;
font-style: normal;
font-weight: 400;
line-height: normal;
}

.headline-bodytext h1 {
    color: #000;
    font-family: Merriweather;
    font-size: 1.6875rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 1vh 0px;

}

.headline-bodytext {
    width: 40.5rem;
    margin: auto;  
}

.headline-bodytext p {
    color: #000;
    font-family: Merriweather;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.0625rem;
    padding: 1vh 0px;
}

.headline-bodytext h3 {
    color: #000;
    font-family: Merriweather;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    letter-spacing: 0.0625rem;
}

.article-break-bottom {
    margin-bottom: 5vh;
}

section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.form-box {
    position: relative;
    width: 400px;
    height: 450px;
    background-color: #b7abe1;
    border: none;
    border-radius: 20px;
    backdrop-filter: blur(15px) brightness(80%);
    display: flex;
    justify-content: center;
    align-items: center;
}

h2 {
    font-size: 1.5em;
    color: #000000;
    text-align: center;
    font-family: Archivo;
}

.inputbox {
    position: relative;
    margin: 30px 0;
    width: 310px;
    border-bottom: 2px solid #000000;
}

.inputbox label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: #000000;
    font-size: 1em;
    pointer-events: none;
    transition: 0.5s;
    font-family: Nunito;
}


input:focus~label,
input:valid~label {
    top: -5px;
}


.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding: 0 35px 0 5px;
    color: #000000;
}

.inputbox ion-icon {
    position: absolute;
    right: 8px;
    color: #000000;
    font-size: 1.2em;
    top: 20px;
}

.forget {
    margin: -10px 0 17px;
    font-size: 0.9em;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.forget label input {
    margin-right: 3px;
}

.forget a {
    color: #fff;
    text-decoration: none;
}

.forget a:hover {
    text-decoration: underline;
}

.submit {
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background-color: #000000;
    color: white;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

.register {
    font-size: 0.9em;
    color: #fff;
    text-align: center;
    margin: 25px 0 10px;
}

.register p a {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
}

.register p a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 480px) {
    .form-box {
        width: 100%;
        border-radius: 0px;
    }
}