body {
    background-color: #0D1B44;
    margin: 0;
}

@media (min-width: 1315px) {
    
    .container-1 {
        display: flex;
        flex-direction: row;
    }
    
    .logo {
        margin-left: -75px;
        margin-top: -55px;
    }
    
    .title {
        color: #FFF;
        font-size: 36;
        margin-left: 102px;
        margin-top: 220px;
    }

    .subtitle {
        color: #FFF;
        font-size: 20;
        margin-left: 102px;
    }
    
    .container-2 {
        display: flex;
        flex-direction: column;
    }
    
    .container-3 {
        display: flex;
        flex-direction: row;
        margin-left: 62px;
        margin-top: 50px;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .choice {
        color: white;
        font-size: 15pt;
        background-color: #223979;
        
        padding-inline: 80px;
        padding-block: 50px;
        
        border-radius: 50px;
        box-shadow: rgba(3, 3, 47, 0.4) 0px 7px 29px 0px;
        
        transition: all .5s;
        
        text-decoration: none;
        
    }
    
    .choice:hover {
        transform: scale(1.1);
    }
    
    .alert-box {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0D1B44;
        justify-content: center;
        align-items: center;
    }
    
    .alert-content {
        background-color: #FFF;
        padding: 20px;
        border-radius: 8px;
        width: 300px;
        text-align: center;
        box-shadow: rgba(3, 3, 47, 1) 0px 15px 30px 10px;

    }
    
    .alert-content h2 {
        font-size: 16pt;
        margin-bottom: 20px;
    }
    
    .alert-content p {
        font-size: 12pt;
        margin-bottom: 20px;
    }
    
    button {
        color: #223979;
        padding: 10px 20px;
        background-color: #FF7CFF;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 16px;
    }
    
    .confirm-button:hover {
        background-color: #a045a0;
    }
}

@media (max-width: 1315px) {
    .container-1 {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }
    
    .logo {
        margin-top: 50px;
        margin-bottom: 50px;
        width: 304px;
        height: 304px;
    }
    
    .title {
        color: #FFF;
        font-size: 18pt;
    }

    .subtitle {
        color: #FFF;
        font-size: 12pt;
    }
    
    .container-2 {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .container-3 {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .choice {
        color: white;
        font-size: 13pt;
        background-color: #223979;
        
        padding-inline: 40px;
        padding-block: 20px;
        
        border-radius: 50px;
        box-shadow: rgba(3, 3, 47, 0.4) 0px 7px 29px 0px;
        
        transition: all .5s;
        
        text-decoration: none;
        
    }
    
    .choice:hover {
        transform: scale(1.1);
    }
    
    .alert-box {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: #0D1B44;
        justify-content: center;
        align-items: center;
    }
    
    .alert-content {
        background-color: #FFF;
        padding: 15px;
        border-radius: 8px;
        width: 250px;
        text-align: center;
        box-shadow: rgba(3, 3, 47, 0.4) 0px 7px 29px 0px;
    }
    
    .alert-content h2 {
        font-size: 16pt;
        margin-bottom: 20px;
    }
    
    .alert-content p {
        font-size: 8pt;
        margin-bottom: 20px;
    }
    
    button {
        color: #223979;
        padding: 10px 20px;
        background-color: #FF7CFF;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 15pt;
    }
    
    .confirm-button:hover {
        background-color: #a045a0;
    }
}