*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    background: url('../img/main.JPG') no-repeat bottom center / cover;
    text-align: center;
    color: white;
    padding: 50px 0;
    min-height: 100vh;
}
.container {
    background: #231e38;
    padding: 20px;
    border-radius: 10px;
    display: inline-block;
}
h1 {
    font-size: 36px;
    margin-bottom: 5px;
}
p {
    font-size: 18px;
    margin-bottom: 20px;
    color: gray;
}
.buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.btn {
    padding: 15px;
    font-size: 18px;
    width: 250px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: .2s;
    box-shadow: 0 0 6px #4a4560;
}
.btn:hover{
    filter: brightness(.9);
    transition: .2s;
}
.btn.white {
    background: white;
    color: black;
}
.btn.pink {
    background: #74D2F8;
    color: black;
}
.btn span {
    font-size: 20px;
}

.img{
    width: 100%;
    max-width: 300px;
    margin: 0 auto 30px;
    padding: 10px 0;
}

.img img{
    width: 100%;
    height: auto;
    display: block;
}
