/* Importing Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100%;
    flex-direction: column;
}

h1 {
    font-size: 15vw;
    font-weight: 700 !important;

}
h3 {
    margin-top: 20px;
    font-size: 2vw;
    letter-spacing: 5px;
}
a {
    display: flex;
    margin-top: 40px;
    border: 0px;
    background-color: #cd5b9a;
    border-radius: 20px;
    height: 40px;
    width: 250px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
}