* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: top;
    gap: 0px;
    padding: 0px;
    position: relative;
}

img {
    height: auto;
    width: calc(100vw);
    object-fit: cover;
    object-position: top;
}

@media screen and (max-width: 768px) {
    .image-container {
        padding: 0px;
    }
    
    img {
        width: 100%;
        margin-bottom: 0px;
        object-fit: contain;
    }
    
    .picks-button {
        padding: 15px 30px;
        font-size: 20px;
        width: 80%;
        max-width: 300px;
        text-align: center;
    }
    
    .button-container {
        bottom: 20px;
        padding: 0 10px;
    }
}

.button-container {
    position: fixed;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    z-index: 1000;
}

.picks-button {
    background-color: #ff4d4d;
    color: white;
    padding: 20px 40px;
    font-size: 24px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}

.picks-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background-color: #ff3333;
}

.picks-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
