* {
    margin: 0; padding: 0; box-sizing: border-box;
}

body{
     background-color: #191825 ; -webkit-text-fill-color: #FFA3FD;
     font-family: "Tomorrow";
    /* border: 2px solid hotpink; */
    }

header{
    background-color: #865DFF;
    text-align: center;
    color: #FFA3FD; 
    padding-bottom: 30px;
    /* border: 2px solid #E384FF; */
    font-weight: normal;
    line-height: 1.5;
    font-size: 20pt;
    }

.Introduction {
    /* border: 2px solid yellow;  */
    margin-top: 50px;
    margin-bottom: 90px;
    line-height: 1.5;
}

main {
    /* border: 2px solid red; */
    display: flex;
    gap: 10px;
    line-height: 1.5;
    margin-top: 300px;
    }

.hometown main {
    text-align: center;
}

 main section {
    flex: 1 0 50%;
     padding: 12px;
     }

a{
    color: #D78FEE;
    }

 main nav a {
     color: #D78FEE; text-decoration: none;
    font-weight: bold;
    font-size: 16pt;
     display: inline-block;
     padding: 8px 12px;
    
     }

main nav a:hover {
    background-color: #E384FF;
    color: #865DFF;
     }

footer{
    padding-top: 100px;
    }


.hometown.Introduction {
    line-height: 1.5;
}


img { 
    border-radius: 50px; 
    box-shadow: -5px 5px 10px #FFA3FD; 
    max-width: 100%; 
    height: auto;
    float: right; 
    width: 100px;
    border: 4px solid #865DFF;
    margin-top: 34px;
}

.Introduction img {
    margin-top: 0;
}


.hometown img {
    float: left;
    width: 400px;
    box-shadow: -5px 5px 10px #FFA3FD;
}

footer {
    /* border: 2px solid orange; */
    text-align: center;
    background-color: #030305;
    margin-top: 150px;
    padding-top: 5px;
    padding-bottom: 5px;
}

/* ========= Landscape Tablet and Bigger ==============*/
@media screen and (min-width: 1020px) {

    .Introduction {
        padding: 10px 10px;
    }

    main {
        margin-top: 0px;
    }





}