@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:wght@400;500&display=swap');

.montserrat-<uniquifier> {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.poppins-regular {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}


body{
    margin: 0;
    padding: 0;
    color: white;
    background-color: #080031;
    overflow: hidden;
}

h1{
    display: none;
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

img{
    width: 250px;
}

h2{
    font-family: montserrat;
}

p{
    font-family: poppins;
}

@media(max-width: 775px){
    .container{
        flex-direction: column;
        gap: 25px;
    }
}