* {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(214, 214, 214);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.mid {
    text-align: center;
    background-color: white;
    border-radius: 20px;
    box-shadow: inset;
    width: 30vw;
    height: 20vh;
    font-family: 'Inter', sans-serif;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.mid h1 {
    font-weight: 900;
    font-size: 35px;
    margin-top: 20px;
}

.mid p {
    font-size: 20px;
}

.mid h5 {
    margin-bottom: 10px;
}

@media (max-width: 1500px) {
    .mid {
        width: 50vw;
    }
}

@media (max-width: 1200px) {
    .mid {
        width: 90vw;
    }
}