* {
 box-sizing: border-box;   
 scroll-behavior: smooth;
}

html {
    
}

body {
    background: linear-gradient(109.6deg, rgb(253, 199, 141) 11.3%, rgb(249, 143, 253) 100.2%);
    font-family: Georgia, 'Times New Roman', Times, serif;
/*    padding: 40px;*/
/*    padding: 100px;*/
/*    margin: 0px;*/

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100vh;
    overflow: hidden;


}

#phoneContainer {
    display: flex;
    flex-direction: column;
    height: 80vh;
    aspect-ratio: 9/16;
    border-radius: 2em;

    background-color: #fee;
    box-shadow: 0px 0px 25px rgba(0,0,0,0.7);
    border: 4px solid black;
    border-top: 12px solid black;
    border-bottom: 12px solid black;
}

#screenContent {
    overflow-y: auto;
    overflow-x: hidden;
    height: 100%;
}

h2 {
    text-align: center;
}

p {
    font-size: 20px;
}

.summary {
    text-align: center;

}

.title {
    text-align: center;
    padding: 20px 0; 
    padding-top: 35px;
    margin: 0;
}

.navbar {
    width: 100%;
    padding: 15px 0;
/*    position: absolute;*/
/*    z-index: 1000;   */
    background-color: rgba(10, 10, 15, 0.5);
    text-color: #fff;
    font-family: sans-serif;
/*    left: 0px;*/
/*    bottom: 0px; */
/*    margin: 0px;*/

}


.navbar ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center; 
    align-content: center;
    text-align: center;
    align-items: center;
    gap: 2px; 
}


.navbar li {
    display: inline-block;
    width: 100%;
}


.navbar a {
    text-decoration: none;
    color: white;
/*    padding: 10px 20px;*/
}


.navbar a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}

.image-container {
    display: flex;
    justify-content: center;  
    align-items: center;      
}

.photo1 {
    max-width: 400px;  
    width: 100%;       
    height: auto;  
}

.section {
    padding: 25px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0;
}