*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

h1 {
    margin-top: 30px;
    color: beige;
    text-align: center;
}

h3{
    text-align: center;
    font-weight: 800;
    margin-top: 5px
}

@import url('https://fonts.googleapis.com/css2?family=Moderustic:wght@300..800&display=swap');

body {
    background-color: rgb(47, 78, 145);
    font-family: "Moderustic", sans-serif;
}

.main {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.box {
    width: 70%;
    padding: 15px;
    box-shadow: 0px 0px 5px gray;
    background-color: darkgrey;
    border-radius: 5px;
}

.row {
    width: 100%;
    margin: 2rem;
    margin-right: 1rem;
    margin-left: 0;
}

.btn {
    width: 100%;
    padding: 5px;
    font-size: 20px;
    font-weight: 500;
    color: white;
    border: none;
    border-radius: 5px;
    background-color: blueviolet;
}