@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body { 
    background-color: #000000;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    text-align: center;
    font-size: 18px;
}

.container {
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 60vh;
}

.logo {
    width: 200px;
}

p {
    font-size: 24px;
    line-height: 1.5em;
    font-weight: 400;
    letter-spacing: 0.80px;
    margin: 35px 0;
}

.link {
    background-color: #FF725E;
    padding: 12px 24px 12px 24px;
    color: #FFFFFF;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    line-height: 1em;
    font-size: 16px;
    text-decoration: none;;
}

button:hover {
    opacity: 0.8;
    cursor: pointer;
}

@media (max-width: 768px) {
    p {
        font-size: 20px;
    }

    button {
        width: 100%;
    }
}