@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    min-height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background: #70bg32;
    background-image: linear-gradient(#2980B9,#00bbff);
    background-repeat: no-repeat;
    background-size: cover;
}

.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
    color: white;
    border-radius: 20px;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    overflow: auto;
    padding: 20px;
}

.logo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}
ght: 64px;
    border-radius: 50%;
}

.title {
    font-size: 5vw;
}

.paragraph {
     font-size: 3vw;
}
