.header {
    height: 50px;
    width: 100%;
    border-bottom-style: solid;
    display: flex;
    justify-self: flex-start;
    align-items: center;
    column-gap: 10px;
    padding-right: 20px;
    padding-left: 20px;
    overflow: none;
}

.image {
    height: 40px;
    width: 60px;
    flex-shrink: 0;
}
#text {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    margin: 100px 20px 0px 20px; 
}

#button {
    border: none;
    background-color: #6495ED;
    border-radius: 15px;
    color: white;
}

p {
    text-align: center;
    font-size: large;
    font-weight: 600;
}

h3 {
    font-size: 20px;

}


#button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

#button:hover {
    cursor: pointer;
}



@media (min-width: 360px) {


    #button {
        width: 240px;
        height: 80px;
        font-size: 30px;
    }
    
}

@media (min-width: 768px) {


    #button {
        width: 300px;
        height: 120px;
        font-size: 35px;
    }

    p {
        font-size: 20px;
    }


    
}

@media (min-width: 1080px) {


    #button {
        width: 400px;
        height: 160px;
        font-size: 40px;
    }

    p {
        font-size: 24px;
    }

    #text h3 {
        font-size: 30px;
    }

    
}



* {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: sans-serif;
}
