*{
    font-family: "Roboto", sans-serif;
    color: white;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body{
    background-color: midnightblue;
}
.hero{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero h1{
    font-weight: bold;
    font-size: 96px;
    padding: 20px;
}
.buttons{
    display: flex;
    gap: 20px;
    margin: 20px;
}
.btn-primary {
    background-color: white;
    color: midnightblue;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    margin: 10px;
}
.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 30px;
    border-radius: 12px;
    text-decoration: none;
    margin: 10px;
}
.properties{
    display: flex;
    justify-content: center;
    padding: 60px;
}
.cards{
    display: flex;
    padding: 15px 20px;
    gap: 30px;
}
.card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
}
.card h3{
    margin: 2px 0px 6px 0px;
}
.screenshots{
    display: flex;
    gap: 30px;
    justify-content: center;
    text-align: center;
}
.placeholder{
    align-items: center;
    justify-content: center;
    display: flex;
    background-color: lightgray;
    height: 500px;
    border-radius: 12px;
    padding: 20px;
}
.placeholder p{
    color: black;
}
footer{
    margin: 40px;
    display: flex;
    justify-content: center;
    font-weight: bold;
}