/* γενική μορφοποίηση στοιχείων και αρχικοποίηση */
body, div, h1, h2, h3, h4, h5, h6, p, ol, ul, blockquote, figure{
    margin:0;
    padding:0;
}
html {
    scroll-behavior: smooth;
}

body{
	position: relative;
    font-family: 'Roboto', sans-serif;
    max-width: 2500px;
    margin:0 auto;
    overflow-x: hidden;
    color: var(--altColor);
    background-color: var(--whiteColor);
}

img{
    width: 100%;
    height: auto;
    display: block;
}

a{
    text-decoration: none;
    color: inherit;
}

ul, ol{
    list-style: none;
}
ul.flex > li:last-of-type{
    margin-right: 0!important;
}
ul.flex.border > li:last-of-type{
    border-right: 0!important;
}
address{
    font-style: normal;
}

html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
*, *:before, *:after {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}

[style*="--aspect-ratio"] > :first-child {
    width: 100%;
  }
  [style*="--aspect-ratio"] > img {  
    height: auto;
  } 
  @supports (--custom:property) {
    [style*="--aspect-ratio"] {
      position: relative;
    }
    [style*="--aspect-ratio"]::before {
      content: "";
      display: block;
      padding-bottom: calc(100% / (var(--aspect-ratio)));
    }  
    [style*="--aspect-ratio"] > :first-child {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
    }  
}

.img-center{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

body{
    background-color: #000;
    color: #fff;
}
.container{
    padding: 4rem 2rem;
    text-align: center;
    font-size: 24px;
}

.container > *{
    margin-bottom: 2rem;
}

h1{font-size: 3em;}
h2{font-size: 2em;}
p{font-size: 1em;}
a{text-decoration: underline;}

.logo{
    max-width: 460px;
    margin-inline: auto;
}

@media screen and (max-width: 1020px) {
    .container{font-size: 20px;}    
}
@media screen and (max-width: 620px) {
    .container{font-size: 16px;}    
}
@media screen and (max-width: 480px) {
    .container{font-size: 13px;}    
}