:root{
    --windows_color: #08223f;
    --text_color: white;
    --font_family: "Momo Trust Display"; 
    --text_transform: uppercase;
    --text_space: 1px;
}

h1{
    font-size: 3rem;
}

label{
    color: var(--text_color);
    font-size: 2rem;
}

.product-page{
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 50px 50px;
    width: auto;
    height: 550px;
    padding: 20px;
    background-color: var(--windows_color);
}

.product-page .product-page-image{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 820px;
    height: 480px;
}

.product-page .product-page-image img{
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.product-page-content{
    position: relative;
    display: flex;
    align-items: start;
    flex-direction: column;
    padding: 20px;
    width: 860px;
    height: 100%;
}

.product-page-content p{
    margin: 20px 0;
}

.input-section{
    display: flex;
    flex-direction: column;
}

button{
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--windows_color);
}