/* made while listening to helmet by steve lacey you should listen to it  its really good */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root{
    /* color combo by someone on tikok */
    --primary: #ffffff;
    --secondary: #000000;
    
}
body{
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
    margin: 0;
    
}
.input-section{
    /* background-color: #df0303; */
    border-radius: 10px;
    overflow: hidden;
    /* width: 400px; */
    width: 75%;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-between; 
    
}

h1{
    color: var(--secondary);
    margin-bottom: 20px;
}

select{
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    border: 1px solid #000000;
    border-radius: 5px;
    background-color: var(--primary);
    color: var(--secondary);
    
}
label{
    font-weight: 500;
    color: var(--secondary);
    margin-top: 10px;
    display: block;
}

.friendBox{
    background-color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    padding: 20px;
}

.yourBox{
    background-color: var(--primary);
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 400px;
    max-width: 100%;
    padding: 20px;
}
@media (max-width: 900px) {
    .input-section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .friendBox,
    .yourBox {
        width: 90%;
    }
    h1{
        font-size: 1.5rem;
    }
}