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

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
}

body {
    background: url("dark.webp");
    color: white;
    height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden;
}

h1 {
    font-size: 4rem;
    text-align: center;
    margin: 4rem 0;
}

.apps {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 5rem auto 0;
    gap: 5rem;
}

.card {
    display: block;
    border: 2px solid white;
    color: white;
    text-align: center;
    background-color: rgba(0,0,0,0.7);
    padding: 4rem;
    font-size: 2rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 200ms ease-in-out;
    width: 40%;
    border-radius: 5rem;
}

.card:hover {
    transform: scale(1.05);
    background-color: rgba(255,255,255,0.1);
}