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

body {
    background-image: url("background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    font-size: 15px;
    font-weight: bold;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.container {
    display: flex;
    justify-content: space-around;
    padding: a10px;
    align-items: center;
    gap: 20px;
    margin: 20px auto 0 auto;
    flex-wrap: wrap;
}

a {
    color: #9900ff;
    text-decoration: none;
}

#basic,
#premium,
#pro,
#enterprise {
    background-color: rgb(165, 165, 165);
    border-radius: 15px;
    outline: 5px solid #000000;
    padding: 35px;
    text-align: center;
    margin: 20px auto;
}

#basic {
    background-image: url("basicbg.jpg");

}

#premium {
    background-image: url("premiumbg.png");
}

#pro {
    background-image: url("probg.jpeg");
}

#enterprise {
    background-image: url("enterprisebg.jpeg");
}

p {
    margin: 15px;
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
}

button {
    width: 80px;
    height: 40px;
    margin-top: 10px;
    display: inline-flex;
    font-weight: bold;
    background-color: #008cff;
    color: white;
}

h2 {
    font-family: 'Zen Dots', sans-serif;
    font-size: 40px;
}

h1 {
    font-family: 'Zen Dots', sans-serif;
    font-size: 80px;
    text-align: center;
    margin-bottom: 20px;
}

.logo {
    width: 300px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
}

footer {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    background-color: #000000;
    width: 100%;
    margin-top: auto;
    padding: 25px 0;
}

footer p {
    font-family: 'Goldman', sans-serif;
}
