Where the code isn't pretty but it's alive!
<body> <div class="container"> <div class="email-popup"> <h1>Keep in the Franken loop!</h1> <h3>Keep in the know of new things before everyone else. Sign up today for our email alerts!</h3> <hr> <input type="email" placeholder="email here..."> <input type="submit" name="submit" id="submit"> <img src="./close-circled.png" alt="Close"> </div> </div> </body>
*{ margin: 0; padding: 0; box-sizing: border-box; } @font-face { font-family: 'Poppins'; src: url('Poppins'); } .container{ width: 100vw; height: 100vh; background-color: #2f2c2c; display: flex; justify-content: center; align-items: center; } .email-popup{ position: relative; width: 60%; height: 50%; border-radius: 20px; background-image: linear-gradient(rgba(34, 34, 34, 0.98), rgba(34, 34, 34, 0.98)), url(../../../img/Logo.png); background-position: left; background-size: cover; background-repeat: no-repeat; background-color: #1e1a1a; box-shadow: 2px 2px 4px #1e1a1a; } .email-popup h1{ font-family: "Poppins"; text-align: center; padding-top: 2rem; font-size: 3.5rem; text-transform: uppercase; margin-top: 2rem; color: white; } .email-popup h3{ font-family: "Poppins"; font-weight: 400; margin-top: 0.5rem; text-align: center; color: white; } hr{ width: 85%; margin: 2rem auto; border: rgba(255, 255, 255, 0.473) 1px solid; } .email-popup input[type="email"] { display: block; width: 60%; padding: 1rem; border-radius: 10px; color: white; margin: 2rem auto 0; border: none; cursor: pointer; } .email-popup input[type="submit"] { font-family: "Poppins"; font-weight: 800; font-size: 1rem; display: block; width: 20%; background-color: #8cb670; color: white; padding: 0.8rem 0; border-radius: 10px; margin: 0.5rem auto 1rem; border: none; cursor: pointer; } .email-popup img{ position: absolute; width: 25px; height: 25px; top: 0; right: 0; margin: 1rem 1rem 0 0; cursor: pointer; } /* Media Queries*/ @media only screen and (max-width: 1024px) { } @media only screen and (max-width: 700px) { .email-popup{ width: 90%; height: 70%; display: flex; flex-direction: column; justify-content: space-around; } .email-popup h1{ font-size: 1.5rem; } .email-popup h3{ font-size: 0.8rem; } hr{ margin: 1rem auto; } .email-popup input[type="email"] { width: 80%; margin: 1rem auto 0; } .email-popup input[type="submit"] { width: 80%; } } @media only screen and (max-width: 320px) { .email-popup h1{ font-size: 1.1rem; } .email-popup h3{ padding: 0 1rem; font-size: 0.8rem; } }