* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #14439E;
    color: #fff;
    min-height: 100vh;
    overflow: hidden;
    padding: 10px;
}

.container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    
}

.title {
    font-size: 5rem;
    font-weight: bold;
}

.subtitle {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-align: center;
}

.academy {
    font-size: 5rem;
    font-weight: bold;
}

.download-section {
    display: flex;
    align-items: start;
    background-color: #303134;
    border-radius: 20px;
    padding: 1rem .5rem;
    gap: 1rem;
    
}

.subtitle, .download-section {
    background-color: #F30040;
    width: 95%;
    max-width: 520px;
}


.apk-icon {
    width: 90px;
    height: 90px;
    background: transparent;
}

.instructions p {
    margin-bottom: 10px;
    font-weight: 600;
}

.instructions p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 630px) {
    .title {
        font-size: 3rem;
    }
    .academy {
        font-size: 2rem;
    }
    
    .apk-icon {
        width: 60px;
        height: 60px;
    }
    .download-section{
        padding: 1rem;
    }
    .subtitle, .download-section {
        font-size: 12px;
        width: auto;
     }
    .instructions p {
        font-weight: normal;
        margin-bottom: 5px;
    }

}   